<p>Hi there, I was playing with my common.js, and find out the Fandom seems not support the for ...of loop, bc in the console of the browser, I always get the error message of
Parse error: Unexpected token on the line where for ...of loop is.
</p><p>So I use this code to test in both browser's console and my common.js with
this page:
</p><p>const number = document.querySelectorAll("tr td:nth-child(1)");
</p><p>for(var numberHTML of number){
</p><p>numberHTML.innerHTML = "999";
</p><p>}
</p><p>In console it works well, but once I put it in my common.js, Unexpected token error came again.
</p>