Below you will find pages that utilize the taxonomy term “Experience”
February 3, 2023
Using Truth Table in Development.
Introduction
Truth tables are the foundation of boolean algebra and are required for logical reasoning and software implementation.
All the if
else
statements we write, irrespective of the programming languages, use
boolean algebra.
One such scenario became the inspiration for this particular short post
The Initial Details
To display some orders on a page where users have access to multiple filters,
such as
- search box - to search the order directly using some identifier
- date range filter - to get orders with a specific date range
- status - to get orders with a specific status
and many others