-
Notifications
You must be signed in to change notification settings - Fork 0
and
Subhajit Sahu edited this page May 28, 2021
·
17 revisions
Checks if all values are true.
📦 NPM,
😺 GitHub,
🏃 RunKit,
🌔 Minified,
📜 Files,
📰 JSDoc,
📘 Wiki.
and([a], [b], [c], [d], [e], [f], [g], [h])
// a: 1st boolean
// b: 2nd boolean
// c: 3rd boolean
// d: 4th boolean
// e: 5th boolean
// f: 6th boolean
// g: 7th boolean
// h: 8th boolean
const {and} = require("extra-boolean");
and(true, true);
// true
and(true, false);
// false
and(true, true, true, true);
// true
and(true, false, true, true);
// false