-
Notifications
You must be signed in to change notification settings - Fork 0
Subhajit Sahu edited this page Jan 26, 2021
·
15 revisions
Check if any value is true. 🏃 [:vhs:] 📦 🌔 📒 📰 📘
boolean.or(a, b, ...);
// a: 1st boolean
// b: 2nd boolean
const boolean = require('extra-boolean');
boolean.or(true, false);
// true
boolean.or(false, false);
// false
boolean.or(false, true, false, true);
// true
boolean.or(false, false, false, false);
// false