Skip to content

Instantly share code, notes, and snippets.

@horitaku1124
Last active December 19, 2015 21:19
Show Gist options
  • Save horitaku1124/6019815 to your computer and use it in GitHub Desktop.
Save horitaku1124/6019815 to your computer and use it in GitHub Desktop.
文字から宣言された関数を呼び出す
var Funs = {fun1: function(n){return n + 100;}};
Funs["fun1"](1); // => 101
({fun1: function(n){return n + 100;}})["fun1"](2); // => 102
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment