Skip to content

Commit 0a59ec9

Browse files
authored
Update article.md
1 parent dbc298f commit 0a59ec9

File tree

1 file changed

+1
-2
lines changed
  • 1-js/05-data-types/10-destructuring-assignment

1 file changed

+1
-2
lines changed

1-js/05-data-types/10-destructuring-assignment/article.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ alert(width); // 100
263263
alert(height); // 200
264264
```
265265

266-
<<<<<<< HEAD
267266
Le proprietà `options.title`, `options.width` e `options.height` vengono assegnate alle variabili corrispondenti.
268267

269268
L'ordine non ha importanza. Questo codice funzionerebbe comunque:
@@ -367,7 +366,7 @@ let { title } = options;
367366
alert(title); // Menu
368367
```
369368

370-
### The rest pattern "..."
369+
### Il modelo rest "..."
371370

372371
Cosa succede se l'oggetto possiede più proprietà delle variabili da noi fornite? Possiamo prendere solamente alcune ed assegnare tutto ciò che avanza da un'altra parte?
373372

0 commit comments

Comments
 (0)