Saved Bookmarks
| 1. |
18. Comparison operators compare two values and evaluate down to a single Boolean value *(1 Point)===or both |
|
Answer» Answer: Equal to (===) — returns true if the VALUE on the LEFT is equal to the value on the right, otherwise it returns FALSE. Not equal to (!==) — returns true if the value on the left is not equal to the value on the right, otherwise it returns false. |
|