Skip to content

Commit 227dcd0

Browse files
Dorin-Davidpasor1
andauthored
Update 1-js/02-first-steps/12-nullish-coalescing-operator/article.md
Co-authored-by: Simone Pasini <66781510+pasor1@users.noreply.github.com>
1 parent 4231471 commit 227dcd0

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/12-nullish-coalescing-operator

1 file changed

+1
-1
lines changed

1-js/02-first-steps/12-nullish-coalescing-operator/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ alert(x); // 2
157157
È usato per assegnare valori di default alle variabili:
158158
159159
```js
160-
// height = 100 se 'height' è *null* o *undefined*
160+
// imposta height = 100 se 'height' è *null* o *undefined*
161161
height = height ?? 100;
162162
```
163163

0 commit comments

Comments
 (0)