Skip to content

Instantly share code, notes, and snippets.

@kanayannet
Created May 5, 2012 07:09
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 kanayannet/2600565 to your computer and use it in GitHub Desktop.
Save kanayannet/2600565 to your computer and use it in GitHub Desktop.
makiage test
var aaa = 1;
function bbb() {
"use strict";
alert(aaa); // undefined
var aaa = 2;
alert(aaa); // 2
}
bbb();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment