Boolean Logic: True & False Boolean is one of the five primitives. There are only two possible options for Boolean value: True or False. Boolean logic is simple writing statements that evaluate to be true or false. Then, we can combine those initial statements to create more complex statement that also evaluate to true or false. Comparison Operators Screenshot from Udemy Course Lecture Most of those operators are very easy to understand. I just want to mention two of them, which are "==" and "===". Those two operators are all equal sign, but they are different. According to the course, "==" performs type coercion which means that it takes two numbers (or strings or variables) and tries to turn them into a similar type so that we can compare them. In the meanwhile, "===" does not perform type coercion. For example: var x = 5; x == "5" // true ("5" is a string. The "==" turns the string ...