I'm getting the error 'Expected identifier' in Internet Explorer. Works in all other browsers.
for(var [i, article] of articles.entries()) {
if(article.hero) {
heroes.unshift(article);
articles.splice(i, 1);
break;
}
}
Any help on this would be much appreciated.
Thanks