For this assignment you will implememnt a number of Boolean functions, such as implies, nand, etc. code example
Example: Use the conditional operator in the checkEqual function to check if two numbers are equal or not. The function should return either "Equal" or "Not Equal".
function checkEqual(a, b) {
return a === b ? "Equal" : "Not Equal";
}