我正在参加ESral Rapid Learning的PluralSight课程。我在ES6中找到了对象 - 文字扩展。因此,在视频中,以下代码的结果将不会引用productView对象中的价格。但我的Chrome控制台显示的是150
,而不是12
。
如果有人能够解释这一点,我将非常感激。
'use strict';
let price = 6.00,
quantity = 2;
let productView = {
price: 15,
quantity: 10,
calculateValue() {
return this.price * this.quantity;
}
};
console.log(productView.calculateValue());