【JavaScript】NodeList.prototype.forEachのPolyfill

2018年8月5日

IEがNodeList.prototype.forEachをサポートしてなかったので、Polyfillを作成した。

コード

NodeList.prototype.forEach = NodeList.prototype.forEach || function( onExecute, thisArg ) {
    thisArg     = thisArg || window;
    const COUNT = this.length;

    for ( let i = 0; i < COUNT; i++ ) {
        onExecute.call( thisArg, this[i], i, this );
    }
};

参考ページ