sleep particular time in javascript code example

Example 1: sleep function javascript

How to get a JavaScript sleep function

First, you must sacrifice JS to the gods of asynchronous programming.
Then, go to grepper and ctrl c + v some code with no idea how to use it.
Give up.
Realise you didnt need it in the first place.
Die inside a little.
Realise you should have stayed with python.
Learn Java out of frustration.

Example 2: javascript version of sleep

//Javascipt is asyncronous so you can't pause/block code execution
//You can delay doing something with setTimeout
setTimeout(function(){
 	alert("Sup!"); 
}, 2000);//wait 2 seconds