diff --git a/guide/english/javascript/comparison-operators/index.md b/guide/english/javascript/comparison-operators/index.md index b3fa7465ce..9e00db82bb 100644 --- a/guide/english/javascript/comparison-operators/index.md +++ b/guide/english/javascript/comparison-operators/index.md @@ -29,7 +29,7 @@ JavaScript has both **strict** and **type–converting** comparisons. ### 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