mbkarle / mind-the-fog

Roguelike JavaScript game--mind the fog!
2 stars 1 forks source link

Remove document.getElementbyID #66

Closed akarle closed 6 years ago

akarle commented 7 years ago

document.getElementById('gold').innerHTML = 'hi'

is the exact same as

$('#gold').html('hi')

We can clean up a bit!