Skip to content

Instantly share code, notes, and snippets.

@malikkurosaki
Last active January 29, 2018 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malikkurosaki/3de791f372bbcdae76d80c4d4b95ca94 to your computer and use it in GitHub Desktop.
Save malikkurosaki/3de791f372bbcdae76d80c4d4b95ca94 to your computer and use it in GitHub Desktop.
super simple javascript timer or increment value with timer
<div id="show"></div>
<script>
function timer(){
var i = 0;
setInterval(function(){
i++;
document.getElementById("show").innerHTML = i;
if(i > 5){
i = 0;
}
},1000);
}
timer();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment