Javascript – Equality (==) Operator VS Strict Equality (===) Operator
In Javascript, there are two options when comparing values in a condition. These comparison options are equality (==) and strict equality (===). Javascript is a loosely typed language which means that variables can be assigned different data types during execution of the application and different data types can be compared in a conditional. In strictly …
Javascript – Equality (==) Operator VS Strict Equality (===) Operator Read More »