Skip to content

Instantly share code, notes, and snippets.

@igeligel
Created July 16, 2019 16:23
Show Gist options
  • Save igeligel/df35fb5e2676f2226bac4512ba5ec3d0 to your computer and use it in GitHub Desktop.
Save igeligel/df35fb5e2676f2226bac4512ba5ec3d0 to your computer and use it in GitHub Desktop.
const a = false;
const b = true;
const result = a && b;
console.log(result);
// Will log false
const c = false;
const d = false;
const result = c && d;
console.log(result);
// Will log false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment