Skip to content

Instantly share code, notes, and snippets.

@youcune
Created June 28, 2014 12:44
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 youcune/46158e88a03c62abb132 to your computer and use it in GitHub Desktop.
Save youcune/46158e88a03c62abb132 to your computer and use it in GitHub Desktop.
Javascriptの無名関数
function myFunc(){
alert('HELLO');
}
myFunc();
// ↓ 同じ動きをする
var myFunc = function(){
alert('HELLO');
}
myFunc();
@kino0104
Copy link

myFunc();
function myFunc(){
alert('HELLO');
}

// ↓ 同じ動かない。↑動くよね?ま、上みたいな書き方は分かりにくいから、やらないか。。

myFunc();
var myFunc = function(){
alert('HELLO');
}

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