Last active
May 6, 2022 14:08
-
-
Save vvgomes/6e7c797c711204397c211732657d1869 to your computer and use it in GitHub Desktop.
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
(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