Skip to content

Commit 19a79fc

Browse files
authored
Update article.md
1 parent 250ae19 commit 19a79fc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ alert(2 + 2 + '1' ); // "41" non "221"
109109

110110
Qui le operazioni vengo eseguite una di seguito all'altra, da sinistra verso destra. Il primo `+` somma i due numeri e restituisce `4`, quindi il successivo `+` concatena a quest'ultimo la stringa `1`, quindi sarebbe come fare `4 + '1' = 41`.
111111

112-
113112
```js run
114113
alert('1' + 2 + 2 ); // "122" non "14"
115114
```

0 commit comments

Comments
 (0)