Created
February 15, 2020 13:41
-
-
Save anshuraj/879c553d88fc79eaf3286dea79f1b009 to your computer and use it in GitHub Desktop.
Revisions
-
anshuraj created this gist
Feb 15, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ (function() { try { throw new Error(); } catch(x) { var x = 1, y = 2; console.log('x ', x); } console.log('x ', x); console.log('y ', y); })();