Skip to content

Instantly share code, notes, and snippets.

View asantos071's full-sized avatar
💭
Learning

Antonio Santos asantos071

💭
Learning
View GitHub Profile
@asantos071
asantos071 / timer_with_javascript.js
Created January 31, 2022 04:50 — forked from dineshsprabu/timer_with_javascript.js
[JAVASCRIPT] Timer with javascript.
<script>
function pretty_time_string(num) {
return ( num < 10 ? "0" : "" ) + num;
}
var start = new Date;
setInterval(function() {
var total_seconds = (new Date - start) / 1000;