Skip to content

Instantly share code, notes, and snippets.

@aozora
Last active January 10, 2018 11:02
Show Gist options
  • Save aozora/d77bdb58fa31feb62556 to your computer and use it in GitHub Desktop.
Save aozora/d77bdb58fa31feb62556 to your computer and use it in GitHub Desktop.
// using the "use strict;" directive,
// what happens executing the test function?
"use strict";
function test(){
var testvar = 4;
return testvar;
}
intvar = test();
@aozora
Copy link
Author

aozora commented Jan 10, 2018

Uncaught ReferenceError: intvar is not defined

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment