Skip to content

Commit 2a3c6bc

Browse files
authored
Remove quotes around equality operator
1 parent 488e850 commit 2a3c6bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/08-comparison/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ From JavaScript's standpoint that's quite normal. An equality check converts usi
108108

109109
## Strict equality
110110

111-
A regular equality check `"=="` has a problem. It cannot differ `0` from `false`:
111+
A regular equality check `==` has a problem. It cannot differ `0` from `false`:
112112

113113
```js run
114114
alert( 0 == false ); // true

0 commit comments

Comments
 (0)