我可以在 JavaScript 中像下面这样的对象中拥有具有相同名称和不同类型的属性和方法吗?
var o = {};
o.sample = {
x : 10,
y : 20 }
o.sample = function() {
return this.sample.x + this.sample.y
}
我可以在 JavaScript 中像下面这样的对象中拥有具有相同名称和不同类型的属性和方法吗?
var o = {};
o.sample = {
x : 10,
y : 20 }
o.sample = function() {
return this.sample.x + this.sample.y
}