Last active
May 20, 2022 13:34
-
-
Save trainspotter-rhld/2aa65d62cf0f163c589788aaf6bdb11d to your computer and use it in GitHub Desktop.
challenge
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
let ts = true; | |
if(ts) { | |
console.log('I LOVE TypeScript'); | |
ts = false; | |
}else { | |
console.log('I hate TypeScript'); | |
} | |
//? what will the output be? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment