Skip to content

Commit 250ae19

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

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,8 @@ Ora un esempio più complesso:
107107
alert(2 + 2 + '1' ); // "41" non "221"
108108
```
109109

110-
<<<<<<< HEAD
111110
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`.
112-
=======
113-
Here, operators work one after another. The first `+` sums two numbers, so it returns `4`, then the next `+` adds the string `1` to it, so it's like `4 + '1' = '41'`.
114-
>>>>>>> 97ef86242f9f236b13152e1baf52a55c4db8728a
111+
115112

116113
```js run
117114
alert('1' + 2 + 2 ); // "122" non "14"

0 commit comments

Comments
 (0)