lol.lewl = {
value: 'something',
anotherValue: lol.lewl.value+' and something else'
}
看见this,没有回答。我想你知道我在这里做什么,我得到了:
TypeError: Cannot read property of undefined
答案 0 :(得分:3)
你做不到。您正在声明lol.lewl
,因此它不知道那是什么。
你必须这样做:
lol.lewl = {
value: 'something'
};
lol.lewl.anotherValue = lol.lewl.value+' and something else';