私はScrollListViewのソースを読んでいましたが、いくつかの場所で() => {}
.
25号線など、
this.cellReorderThreshold = () => {
var ratio = (this.CELLHEIGHT*this.cellsWithinViewportCount)/4;
return ratio < this.CELLHEIGHT ? 0 : ratio;
};
31行目、
this.container.addEventListener('scroll', () => this.onScroll(), false);
88行目。
resizeTimer = setTimeout(() => {
this.containerHeight = this.container.offsetHeight;
}, 250);
これは の省略形function
ですか? 何らかの点で異なる場合、どのように違いますか?