Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 4: Mastering JavaScript Basics: Operators, Variable Scope, and Data Handling!
You have completed (UPI) Chapter 4: Mastering JavaScript Basics: Operators, Variable Scope, and Data Handling!
Instruction
Comparison Operators
Comparison operators determine whether their two operands meet the given condition. They return true or false.
Concerning the 'equal' and 'not-equal' operators, you must take care. == is different from ===. The first one tries to adapt the data type of the two types to each other and then compares the values. The second one compares the types as well as their values and returns only true i...