Skip to content

Instantly share code, notes, and snippets.

@igeligel
Created July 16, 2019 16:21
Show Gist options
  • Save igeligel/2610fcfc3bbda7984c22d5245308fa22 to your computer and use it in GitHub Desktop.
Save igeligel/2610fcfc3bbda7984c22d5245308fa22 to your computer and use it in GitHub Desktop.
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