-
-
Save isabellachen/ad93f1bf8aba57d66ce186beeddc990a to your computer and use it in GitHub Desktop.
Asynchronicity exercise
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
const randomNumber = () => { | |
return Math.random(); | |
} | |
// 1. Make it wait for 1 sec. with `setTimeout` | |
const timeoutRandomNumber = () => { | |
} | |
// 2. Now wrap the timeout version to work with promises | |
const promiseRandomNumber = () => { | |
} | |
// 3. Finally, code a final version with async await. | |
const asyncRandomNumber = () => { | |
} | |
const rangedRandomNumber = (base, min, max) => { | |
return Math.floor((base*(max-min))+min); | |
} | |
const main = () => { | |
const rnd = randomNumber() | |
console.log(rangedRandomNumber(rnd, 14, 42)); | |
} | |
main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment