Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 895 Bytes

File metadata and controls

47 lines (29 loc) · 895 Bytes

CATopalian JavaScript Boolean Algebra

An in-depth tutorial on Boolean Algebra and how to express Boolean logic using JavaScript.


Complement

A + !A = 1


Null

A * !A = 0


Idempotent

A + A = A

A * A = A


Identity

A + 0 = A

A * 1 = A


Domination

A + 1 = 1

A * 0 = 0


How to Download this App

  1. Click the green Code Button on this github page
  2. Choose Download ZIP
  3. Save the Zip File
  4. Extract All
  5. Double click the HTML file to start the App

Happy Scripting :-)