All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g2601_2700.s2621_sleep.readme.md Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
2621\. Sleep

Easy

Given a positive integer `millis`, write an asynchronous function that sleeps for `millis` milliseconds. It can resolve any value.

**Example 1:**

**Input:** millis = 100

**Output:** 100

**Explanation:** It should return a promise that resolves after 100ms. let t = Date.now(); sleep(100).then(() => { console.log(Date.now() - t); // 100 });

**Example 2:**

**Input:** millis = 200

**Output:** 200

**Explanation:** It should return a promise that resolves after 200ms.

**Constraints:**

*   `1 <= millis <= 1000`




© 2015 - 2024 Weber Informatics LLC | Privacy Policy