The equality operator is used check whether two values are equal<br/> The values can be of any type, as long as the operator is applied to values of the same type.
Syntax
Value1 = Value2
Returns
Returns boolean true
when Value1 is equal to Value2
Examples
35 = 35 /* results in true */
"Hello World" = "Hello, World" /* results in false */
"Quick, Brown Fox" = "Quick, Brown Fox" /* results in true */
Date(2017, 5, 31) = Date(2017, 5, 31) /* results in true */