I am looking for a JavaScript equivalent of the Python:
pass statement that does not run the function of the ... notation?
pass
...
Is the
you could create a function that actually does nothing.
const pass = t => t
try { pass() } else { console.log('helloworld!') }