【JavaScript】NodeList.prototype.forEachのPolyfill
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 );
}
};