Skip to content
Subhajit Sahu edited this page Mar 25, 2021 · 7 revisions

Checks if all values are false. 📰 📘

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


nor([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 {nor} = require("extra-boolean");

nor(False, False);
# True

nor(True, False);
# False

nor(False, False, False, False);
# True

nor(False, False, True, False);
# False


References

Clone this wiki locally