Last active
July 14, 2021 01:47
-
-
Save leobalter/274ba70e6b5fd5ba79550a7c93e54cf5 to your computer and use it in GitHub Desktop.
Revisions
-
leobalter revised this gist
Jul 14, 2021 . 1 changed file with 7 additions and 3 deletions.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 @@ -23,9 +23,13 @@ function tellMe() { } catch { return 'more'; } finally { try { try { /β/ } finally { return 'why!'; } } catch {} throw 'donk'; } -
leobalter renamed this gist
Jul 14, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
leobalter renamed this gist
Jul 14, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
leobalter revised this gist
Jul 14, 2021 . 2 changed files with 5 additions and 2 deletions.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,3 @@ β°β node π.js ββ― tell me why! 2 42 b 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 @@ -32,6 +32,6 @@ function tellMe() { return 'it\'s nothing but a headache!'; } console.log(`tell me ${tellMe()}`); // tell me why! console.log(x, y, z()); <!-- 2 42 'b' -
leobalter created this gist
Jul 14, 2021 .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,37 @@ --> HELLo! var x = 2; var y=42<!--x; function z() { return 'a'; } with (new Proxy(globalThis, {})) { function z() { return 'b'; } { function z() { return 'c'; } } } function tellMe() { try { return 'no'; } catch { return 'more'; } finally { try{ try {} finally { return 'why!'; } } catch {} throw 'donk'; } return 'it\'s nothing but a headache!'; } console.log(`tell me ${tellMe()}`); console.log(x, y, z());