Created
May 8, 2016 05:22
-
-
Save niwatako/448bb4a8124e3e8f6af0e5da7b4e0e50 to your computer and use it in GitHub Desktop.
ES6では最後の評価を保持し続けないようになった #CodePiece #kyotojs
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
| /* 最後の評価を保持しないようになった */ | |
| eval( '42; if (true) {}' ); // ES5 => 42 | |
| eval( '42; if (true) {}' ); // ES6 => undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment