Skip to content

Instantly share code, notes, and snippets.

@ksakae1216
Created June 20, 2016 06:55
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 ksakae1216/3f9d953034071c91b9a586c8120d3d20 to your computer and use it in GitHub Desktop.
Save ksakae1216/3f9d953034071c91b9a586c8120d3d20 to your computer and use it in GitHub Desktop.
例1)
console.log(x); // "3" が出力される
var x = 3;
例2)
console.log(x); // "4" が出力される
var x = 3;
var x = 4;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment