Update article.md to fix typo

Section should refer to "strict" comparison operator, not "string" comparison operator.
This commit is contained in:
Ian Witham 2017-07-09 11:28:16 +12:00 committed by GitHub
parent 33c7a30b10
commit 75fc2c556f

View file

@ -136,7 +136,7 @@ alert( 0 === false ); // false, because the types are different
There also exists a "strict non-equality" operator `!==`, as an analogy for `!=`.
The string equality check operator is a bit longer to write, but makes it obvious what's going on and leaves less space for errors.
The strict equality check operator is a bit longer to write, but makes it obvious what's going on and leaves less space for errors.
## Comparison with null and undefined