i am new to object oriented javascript. I have a variable whose value i would like to use to call an object's method. like this..
var foo = {
bar: function() {},
barr: function() {}
}
now there is a variable whose value can be any of the two method's names bar
and barr
i want to call them with something like
var myvar = 'bar';
foo.{myVar}();
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…