Created
July 16, 2019 16:21
-
-
Save igeligel/2610fcfc3bbda7984c22d5245308fa22 to your computer and use it in GitHub Desktop.
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
const a = true; | |
const b = "Magic String"; | |
const result = a && b; | |
console.log(result); | |
// Will log "Magic String" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment