Это
Код: Выделить всё
const x = {
_count: 0,
inc(){
this._count = this._count + 1;
console.log(Date.now());
console.log(this._count);
},
};
setInterval(x.inc(), 1000);
Код: Выделить всё
1764248031172
1
Код: Выделить всё
const x = {
_count: 0,
inc(){
this._count = this._count + 1;
console.log(Date.now());
console.log(this._count);
},
};
setInterval(x.inc, 1000);
Код: Выделить всё
1764248289636
NaN
1764248290638
NaN
1764248291655
NaN
1764248292656
NaN
1764248293657
NaN
1764248294657
NaN
...
...
...
...
...
...
...
...
Подробнее здесь: https://stackoverflow.com/questions/798 ... etinterval
Мобильная версия