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

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

Similar: and, or, not, xor.


boolean.not(a)
// a: a boolean
const boolean = require('extra-boolean');

boolean.not(false);
// true

boolean.not(true);
// false


References

Clone this wiki locally