- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sleep in JavaScript delay between actions?
To set sleep i.e. delay, use the concept of setTimeout(). It takes values in milliseconds i.e.
1000 milliseconds = 1 second 2000 milliseconds = 2 seconds, etc.
For our example, we will add two values with a delay of 5 seconds i.e. 5000 milliseconds. Following is the code −
Example
var firstValue=10; var secondValue=20; var result=firstValue+secondValue; setTimeout(function() { }, (5 * 1000)); console.log("The result="+result);
The above setTimeout() will sleep for 5 seconds. To run the above program, you need to use the following command −
node fileName.js.
Here, my file name is demo95.js.
Output
This will produce the following output −
PS C:\Users\Amit\JavaScript-code> node demo95.js The result=30
Advertisements