Skip to content

Instantly share code, notes, and snippets.

@electerious
Last active August 17, 2017 13:25
Show Gist options
  • Save electerious/b2c5817cb162ebd2ae8662938ec69dc7 to your computer and use it in GitHub Desktop.
Save electerious/b2c5817cb162ebd2ae8662938ec69dc7 to your computer and use it in GitHub Desktop.
Repeat a function for a specified amount of times
const repeat = (fn, times) => {
fn()
--times && repeat(fn, times)
}
@electerious
Copy link
Author

Example:

repeat(() => console.log('repeat'), 5)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment