Skip to content

Instantly share code, notes, and snippets.

@katepapineni
Created July 27, 2020 14:34
Show Gist options
  • Save katepapineni/bcc8b56045478bd33c2981383d7f0c74 to your computer and use it in GitHub Desktop.
Save katepapineni/bcc8b56045478bd33c2981383d7f0c74 to your computer and use it in GitHub Desktop.
const first = 200 && 300 && 100;
const second = 0 && 300 && 200;
const third = first || second && 0;
// What's the output?
console.log(first + second + third);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment