-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from bpd01001/feature/==-versus-===-JS
Pushing == vs === in 04 - JS
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
== is used to check for relative equality, whereas === is used to check for strict equality. | ||
|
||
In other words, the string '2' will evalutae to true when compared to the integer data type for 2 for equality. | ||
|
||
=== will check to see if the contents AND data type are the same, so since a string and an integer aren't the same, it would | ||
evaluate to false. | ||
|
||
TLDR: | ||
|
||
'2' == 2 will evaluate to True, since the contents are the same | ||
|
||
'2' === 2 will evaluate to False, since the data types are different. |