This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sometimes it is helpful/necessary to create a promise, that delays the execution. | |
// This very general/generic snippet returns a promise, that is resolved after a given timeout. | |
// The `min` and `max` arguments are used to calcuate a random delay in the range between `min` and `max` | |
let delay = (min, max) => { | |
return new Promise(resolve => { | |
setTimeout(resolve, Math.random() * (max - min) + min) | |
}) | |
} | |
// The next 3 lines of code are an example of how to use `delay()` in general: |