add js using timeout code example
Example: javascript settimeout
setTimeout(function(){
console.log("hello");
}, 3000); //wait for atleast 3 seconds before console logging
setTimeout(function(){
console.log("hello");
}, 3000); //wait for atleast 3 seconds before console logging