Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created April 8, 2015 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/dccbdc75f1d88ced9381 to your computer and use it in GitHub Desktop.
Save shigemk2/dccbdc75f1d88ced9381 to your computer and use it in GitHub Desktop.
"use strict" a = 5;
console.log(a);
function hoge() {
a = 3;
console.log(a);
hoge();
}
hoge();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment