I am looking for a JavaScript equivalent of the Python:
pass statement that does not run the function of the ... notation?
pass
...
Is the
I've found that I get an error with empty braces, instead I put a semicolon in there, basically the same thing:
try { //something; } catch (err) { ; }