I am looking for a JavaScript equivalent of the Python:
pass statement that does not run the function of the ... notation?
pass
...
Is the
python's pass is required for empty blocks.
try: # something except Exception: pass
In javascript you can simply catch an empty block
try { // some code } catch (e) { // This here can be empty }