标签:style color java os io cti javascript new
function Foo(a, b) { this.a = a; this.b = b; // simulate getter via valueOf and toString method this.sum = { valueOf: function () { return a + b }, toString: function () { return a + b } } } alert(new Foo(2, 3).sum);
Simulate getter in JavaScript by valueOf and toString method,布布扣,bubuko.com
Simulate getter in JavaScript by valueOf and toString method
标签:style color java os io cti javascript new
原文地址:http://www.cnblogs.com/pengpenghappy/p/3918355.html