Created
April 30, 2021 23:17
-
-
Save PatheticMustan/67602461d0e91575777583a7730b9f74 to your computer and use it in GitHub Desktop.
countdown go wheeeee
This file contains 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 repeatTask = (func=()=>{}, ms=100, repeats=1) => { | |
let interval = setInterval(() => { | |
if (--repeats === 0) clearInterval(interval); | |
func(repeats); | |
}, ms); | |
} | |
repeatTask((i)=>console.log(i), 1000, 5); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment