我有一个这样的对象:
var statistics = {
won: 0,
tie: 0,
lost: 0
};
我有一个将
won
加1的函数:var plus1 = function() {
return statistics.won++;
}
我在if / else语句中这样调用该函数:
plus1();
但这是行不通的。有人有主意吗?
最佳答案
x ++可能返回x而不是x + 1。
你在找
var plus1 = function() {
return ++statistics.won;
}