Created
January 11, 2022 21:32
-
-
Save stefanbuck/67ca7bb2795e14abffd1849f37e23758 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
const alphabet = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; | |
const input = [ | |
"I really", | |
"ScriptJava", | |
["and I", "an it's"], | |
{ | |
m1: "love", | |
m2: "!namuh retteb a" | |
}, | |
{ | |
"AmAzIng": 0, | |
m3: "lang👽uage" | |
}, | |
function think() { | |
return 'that allows me' | |
} | |
] | |
function youCanDoIt() { | |
return ''; | |
} | |
// Make this work without using any additional strings | |
console.log(youCanDoIt() === "I really love JavaScript and I think it's an amazing language that allows me to BECOME a better human!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment