Knowledge Walls
Laya
Hyderabad, Andhra Pradesh, India
window.clearTimeout() Method in Window Object of Javascript Syntax with Examples
2155 Views
Usage 
The setTimeout() method is used to display message or call function after specified interval of time.
Syntax 
setTimeout (message or function,interval);
Example
function doIt(){
  document.body.innerHTML = "";
  document.write(new Date()+"<br />");
}

setTimeout(doIt,1000);
Output 
It will display current time after specified time.

"Sat Dec 06 2014 11:49:00 GMT+0530 (India Standard Time)"
Best Lessons of "Javascript Syntax with Examples"
Top lessons which are viewed more times.
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details