Data Type Testing
Let’s learn about testing data types in JavaScript.
We'll cover the following...
How is testing done?
To test the equality or inequality of two primitive data values, we always use the triple equality symbol (===
and !==
) instead of the double equality symbol (==
and !=
). Otherwise, for instance, the number ...