Skip to content

Instantly share code, notes, and snippets.

@puskuruk
Created May 1, 2020 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save puskuruk/54613955234a93aec40cc7d9685a9309 to your computer and use it in GitHub Desktop.
Save puskuruk/54613955234a93aec40cc7d9685a9309 to your computer and use it in GitHub Desktop.
const times = howManyTimes => functionWillExecute => {
if (howManyTimes > 0) {
functionWillExecute()
times(howManyTimes - 1)(functionWillExecute)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment