Answers for "js timout"

150

javascript settimeout

setTimeout(function(){
 	alert("Sup!"); 
}, 2000);//wait 2 seconds
Posted by: Guest on June-27-2019
28

javascript settimeout

setTimeout(function(){ alert("Hello"); }, 3000);
Posted by: Guest on September-13-2019
26

timeout javascript

setTimeout(function(){
 	//code goes here
}, 2000); //Time before execution
Posted by: Guest on April-13-2020
3

javascript settimeout

window.setTimeout(()=>{
  console.log('1 second passed!');
}, 1000);
Posted by: Guest on June-01-2020
1

settimeout javascript

//setTimeout having  parameater 
//1. function
//2. time in mili second
//parm1 , parm2 ........
setTimeout(function(){
 	console.log("DARK_AMMY"); 
}, 2000);//wait 2 seconds
Posted by: Guest on May-30-2021
1

set timeout

<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
  <div class="toast-header">
    <img src="..." class="rounded me-2" alt="...">
    <strong class="me-auto">Bootstrap</strong>
    <small class="text-muted">11 mins ago</small>
    <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
  </div>
  <div class="toast-body">
    Hello, world! This is a toast message.
  </div>
</div>
Posted by: Guest on September-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language