Skip to content
Subhajit Sahu edited this page Jan 26, 2021 · 15 revisions

Check if any value is true. 🏃 [:vhs:] 📦 🌔 📒 📰 📘

Similar: or, nor.
Similar: and, or, not, xor.


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


References

Clone this wiki locally