Grammar fix (#33047)

This commit is contained in:
Travis Benfield
2019-03-29 16:13:23 -04:00
committed by Randell Dawson
parent b16773617e
commit 2262edd134

View File

@ -29,7 +29,7 @@ JavaScript has both **strict** and **typeconverting** comparisons.
### Equality (==) ### Equality (==)
The equality operator converts the operands if they are **not of the same type**, then applies strict comparison. If **both operands are objects**, then JavaScript compares internal references which are equal when operands refer to the same object in memory. The equality operator converts the operands if they are **not of the same type**, then applies strict comparison. If **both operands are objects**, then JavaScript compares internal references, which are equal when operands refer to the same object in memory.
#### Syntax #### Syntax