我有这个:
this.f = function instance(){};
我想要这个:
this.f = function ["instance:" + a](){};
正如其他人提到的那样,这不是最快也不推荐的解决方案。
您可以使用eval:
var code = "this.f = function " + instance + "() {...}"; eval(code);