Skip to content
Jaime Redondo edited this page Jan 3, 2021 · 2 revisions

nor(input: Input): Output

Short way of using the NOR gate.

Parameters

Name Type Default Description
input Input none The gate's input.

Returns

Output - The gate's output.

Example

const { nor } = require("@jaimermxd/logic-gates");

var res = nor([false, true]);

console.log(res); // false

Clone this wiki locally