JavaScript Settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
Grepper
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
setTimeout(function() {
//your code here
}, 1000);
//single event i.e. alarm, time in milliseconds
var timeout = setTimeout(function(){yourFunction()},10000);
//repeated events, gap in milliseconds
var interval = setInterval(function(){yourFunction()},1000);
var count = 0;
function updateCount() {
count = count + 1;
document.getElementById("number").innerHTML = count;
setTimeout(updateCount, 1000);
}
// this example takes 2 seconds to run
const start = Date.now();
// After a certain amount of time, run this to see how much time passed.
const milliseconds = Date.now() - start;
console.log('Seconds passed = ' + millis / 1000);
// Seconds passed = *Time passed*