Day 8 of learning JavaScript: Arrays and changes at the game
Today, the first thing I learned was something that counts overall. There is a better way to select an HTML element than document.getElementById():
// old way
document.getElementById("id")
//new way
document.querySelector("#id") //it's better, becau...
svensblog.hashnode.dev4 min read