标签: javascript
我在javascript中定义对象时遇到了大问题
我想声明如下对象
var t = { c: 'mehdi', d: { m: this.c } }
当我打印console.log(t.d.m)时,它显示为空
是否可以打印“ mehdi”?