5.1.3. Boolean Expressions¶
/*We can also use == to see that true and "true" are not equal.*/
console.log(true == "true");
//false
5.1.3. Boolean Expressions¶
/*We can also use == to see that true and "true" are not equal.*/
console.log(true == "true");
//false
5.1.3. Boolean Expressions¶
/*A boolean expression is an expression that evaluates to either true
or false. The equality operator, ==, compares two values and returns
true or false depending on whether the values are equal.*/
console.log(5 == 5);
console.log(5 == 6);
//true
//false
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us