Last active
January 10, 2018 11:02
-
-
Save aozora/d77bdb58fa31feb62556 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
// using the "use strict;" directive, | |
// what happens executing the test function? | |
"use strict"; | |
function test(){ | |
var testvar = 4; | |
return testvar; | |
} | |
intvar = test(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uncaught ReferenceError: intvar is not defined