我有大约50个对象,如:
object[0].one = something;
object[0].two = else;
object[0].options = whatever;
不确定如何描述它但每个都有子参数。我试图添加一个额外的参数,我只会手动添加到我想要的那些参数,如下:
object[15].condition = function() { if (something) { then do something; } } ;
//and then later on in a function do
if (this.condition) {
this.condition;
}
但我不能让它工作=(这样的事情可能吗?非常感谢任何帮助。
答案 0 :(得分:2)
if (this.condition) {
this.condition();
}