Skip to content

Instantly share code, notes, and snippets.

@vvgomes
Last active May 6, 2022 14:08
Show Gist options
  • Save vvgomes/6e7c797c711204397c211732657d1869 to your computer and use it in GitHub Desktop.
Save vvgomes/6e7c797c711204397c211732657d1869 to your computer and use it in GitHub Desktop.
(function sayHello(count = 50) {
if (count === 0) return;
console.log("hello world");
sayHello(count - 1);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment