diff --git a/files/en-us/web/javascript/reference/operators/equality/index.md b/files/en-us/web/javascript/reference/operators/equality/index.md index 2e0b2a9a9c092a7..4ca5e8eb88594df 100644 --- a/files/en-us/web/javascript/reference/operators/equality/index.md +++ b/files/en-us/web/javascript/reference/operators/equality/index.md @@ -52,8 +52,8 @@ There's a "willful violation" of the above algorithm: if one of the operands is ### Comparison with no type conversion ```js -1 == 1; // true -"hello" == "hello"; // true +1 === 1; // true +"hello" === "hello"; // true ``` ### Comparison with type conversion