Skip to content

Instantly share code, notes, and snippets.

@Bambina-zz
Created July 19, 2015 11:25
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 Bambina-zz/65b3e56f3e9835fe73bf to your computer and use it in GitHub Desktop.
Save Bambina-zz/65b3e56f3e9835fe73bf to your computer and use it in GitHub Desktop.
js hoisting
var global = "global";
(function x(){ //即時実行形式なのでカッコ()が多いです。
console.log(global); //=>undefined ローカル変数globalが定義されているが(var global;)、中身がない状態。
var global = "local"; //文字列localが代入された。
console.log(global); //=>local ローカル変数globalの中身がそのまま出力される。
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment