We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4283ac commit 5f7b42fCopy full SHA for 5f7b42f
manual/en-US/coding-standards/chapters/javascript.md
@@ -109,7 +109,7 @@ foo(function() {
109
110
**Function with a callback, object, or array as the last argument:**
111
112
-**No space after the last argument:**
+No space after the last argument.
113
114
```
115
foo( data, function() {
@@ -378,15 +378,14 @@ if ( condition &&
378
379
Use strict equality operator === so that type is considered in comparison. Using == can produce false positives.
380
381
-// evaluates true
382
383
+// evaluates true
384
1 == "1"
385
386
387
-// evaluates false
388
-
389
+// evaluates false
390
1 === "1"
391
392
0 commit comments