Created
February 22, 2021 21:24
-
-
Save vinitshahdeo/380f19be7bf9e24c3fc88e87e1f6f375 to your computer and use it in GitHub Desktop.
What came first, the chicken or the egg?
This file contains hidden or 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
/** | |
* Please use any online IDE or browser's console to see the output | |
* Link to online IDE: https://repl.it/languages/nodejs | |
* | |
*/ | |
const chicken = () => egg(); | |
const egg = () => chicken(); | |
console.log(`${chicken()} came first`); | |
// ...and the debate continues! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No I am not running this code and getting my machine into an infinite loop! 🤣