Skip to content

Instantly share code, notes, and snippets.

@du5rte
Created September 13, 2017 15:21
Show Gist options
  • Save du5rte/ef72a67f3094884ad78326bf18c6aec0 to your computer and use it in GitHub Desktop.
Save du5rte/ef72a67f3094884ad78326bf18c6aec0 to your computer and use it in GitHub Desktop.
test multiple booleans
const tests = [true, false, true]
const finalTest = tests.reduce((acc, val) => {
return acc && val
}, true);
console.log(finalTest)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment