Created
September 12, 2017 02:24
-
-
Save ssanusi/9b6735f24cb547c606cfcbcf570c0ce8 to your computer and use it in GitHub Desktop.
unformatted created by ssanusi - https://repl.it/Kxk5/0
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
function unformatted() { | |
function innerFunction(count) { | |
while(count > 0) { | |
count--; | |
if(count===2) { | |
console.log("count is two!"); | |
} | |
} | |
console.log("are we still in the inner func?"); | |
} | |
innerFunction(5); | |
return "end of the func"; | |
} | |
unformatted(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment