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.
2 parents fe3d781 + 0c8e883 commit 1b078d0Copy full SHA for 1b078d0
1-js/02-first-steps/12-nullish-coalescing-operator/article.md
@@ -37,7 +37,7 @@ Here's the example with `user` assigned to a name:
37
```js run
38
let user = "John";
39
40
-alert(user ?? "Anonymous"); // John (user is not null/udefined)
+alert(user ?? "Anonymous"); // John (user is not null/undefined)
41
```
42
43
We can also use a sequence of `??` to select the first value from a list that isn't `null/undefined`.
0 commit comments