not(input: Input): Output
Short way of using the NOT gate.
input
Output - The gate's output.
const { not } = require("@jaimermxd/logic-gates"); var res = not([false, true]); console.log(res); // [ true, false ]
There was an error while loading. Please reload this page.