Skip to content

Instantly share code, notes, and snippets.

@need4spd
Created April 2, 2014 00:33
Show Gist options
  • Save need4spd/9925860 to your computer and use it in GitHub Desktop.
Save need4spd/9925860 to your computer and use it in GitHub Desktop.
execfunction
var o = {
message: (function() {
var who = "me", what = "call";
alert(1);
return what + " " + who; }()),
getMsg: function() {
return this.message;
}
};
//o로드와 동시에 alert 실행
o.getMsg(); //call me
o.message; //call me
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment