Last active
May 9, 2020 18:43
-
-
Save alissoncs/6b65cf0ce36e9a1db548fd758d30a9b9 to your computer and use it in GitHub Desktop.
updateTotal.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var total = 0; | |
function updateTotal() { | |
document.getElementById('total').innerHTML = total; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment