diff --git a/content/questions/equality-operators/index.md b/content/questions/equality-operators/index.md index 5f58cf07..37b757dc 100644 --- a/content/questions/equality-operators/index.md +++ b/content/questions/equality-operators/index.md @@ -23,4 +23,4 @@ console.log(x === y); -The equality operator `==` first converts operands to the same types before doing a strict comparison, so that's why `x == y` logs `true`. The identity operator "===" *only* carries out a strict comparision; there is no type conversion. `x === y` therefore returns `false` because `x` and `y` do not share the same type. +The equality operator `==` first converts operands to the same types before doing a strict comparison, so that's why `x == y` logs `true`. The identity operator "===" *only* carries out a strict comparison; there is no type conversion. `x === y` therefore returns `false` because `x` and `y` do not share the same type.