Last active
December 19, 2015 21:19
-
-
Save horitaku1124/6019815 to your computer and use it in GitHub Desktop.
文字から宣言された関数を呼び出す
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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