Closed akarle closed 6 years ago
document.getElementById('gold').innerHTML = 'hi'
is the exact same as
$('#gold').html('hi')
We can clean up a bit!
document.getElementById('gold').innerHTML = 'hi'
is the exact same as
$('#gold').html('hi')
We can clean up a bit!