Created
April 21, 2020 18:36
-
-
Save Jagathishrex/80b8f416e9de08e31c6e10d3c0958736 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function callback() { | |
| // error code | |
| } | |
| function test() { | |
| try { | |
| setTimeout( callback , 1000); | |
| } catch (e) { | |
| console.log( "not executed" ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment