Created
February 24, 2016 14:50
-
-
Save wagenet/13156b8054b464d7178c to your computer and use it in GitHub Desktop.
This file contains 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
// This file is valid, if contrived. | |
// Without nested block comments, the middle alert will get run. | |
// With nested block comments it would not. | |
/* | |
Comment | |
/* | |
alert("Don't run this anymore."); | |
*/ | |
alert("I'm in a double nested comment!"); | |
/* | |
alert("Don't run this either."); | |
*/ | |
// This is a comment that got caught by the block. */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment