-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added "NaN is not NaN" #375
Open
shreyas-a
wants to merge
2
commits into
BonsaiDen:master
Choose a base branch
from
shreyas-a:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ JavaScript features *weak typing*. This means that the equality operator | |
false == null // false | ||
null == undefined // true | ||
" \t\r\n" == 0 // true | ||
NaN == NaN // false | ||
|
||
The above table shows the results of the type coercion, and it is the main reason | ||
why the use of `==` is widely regarded as bad practice. It introduces | ||
|
@@ -43,6 +44,7 @@ operator does **not** perform type coercion between its operands. | |
false === null // false | ||
null === undefined // false | ||
" \t\r\n" === 0 // false | ||
NaN === NaN // false | ||
|
||
The above results are a lot clearer and allow for early breakage of code. This | ||
hardens code to a certain degree and also gives performance improvements in case | ||
|
@@ -63,6 +65,17 @@ Here, both operators compare for **identity** and **not** equality; that is, the | |
will compare for the same **instance** of the object, much like `is` in Python | ||
and pointer comparison in C. | ||
|
||
### Comparing NaN | ||
If either side of double equals `a == b` contains `NaN`, `false` will be returned. | ||
In case of a tripple equals `a === b`, following things are considered. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed |
||
|
||
FYI `typeof NaN` is `number` | ||
|
||
- If `typeof a` is different from `typeof b`, return `false`. | ||
- If `typeof a` is `number`, then | ||
- If a is NaN, return `false`. | ||
- If b is NaN, return `false`. | ||
|
||
### In Conclusion | ||
|
||
It is highly recommended to only use the **strict equality** operator. In cases | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not quite sure about this explanation, according to my testing and research any equality with NaN, double or triple, returns false.
I would suggest an alternate explanation:
I don't think it's relevant here to talk about the type of NaN, although that should probably be added in the
typeof
section.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've referred to this ecma standards explanation