Heim > Fragen und Antworten > Hauptteil
P粉6158297422023-08-30 11:54:25
你可以这样做:
var foo = { a: 5, b: 6, init: function() { this.c = this.a + this.b; return this; } }.init();
这将是对象的某种一次性初始化。
请注意,您实际上是将 init()
的返回值分配给 foo
,因此您必须返回该值
。
P粉3223196012023-08-30 00:12:19
好吧,我唯一能告诉你的是
var foo = {
a: 5,
b: 6,
get c() {
return this.a + this.b;
}
}
console.log(foo.c) // 11