Skip to content

Commit 2861706

Browse files
El-Hachemi HariziEl-Hachemi Harizi
authored andcommitted
Confilct fixed on "Basic operators, maths" page in french language
1 parent 6289011 commit 2861706

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,7 @@ Cependant, notez que les opérations se déroulent de gauche à droite. S'il y a
105105
alert(2 + 2 + '1' ); // "41" et non "221"
106106
```
107107

108-
<<<<<<< HEAD
109108
Ici, les opérateurs travaillent les uns après les autres. Le premier `+` additionne deux nombres, donc il renvoie `4`, puis le `+` suivant ajoute la chaîne de caractères `1`, donc c'est comme `4 + '1' = 41`.
110-
=======
111-
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'`.
112-
>>>>>>> 97ef86242f9f236b13152e1baf52a55c4db8728a
113109
114110
```js run
115111
alert('1' + 2 + 2); // "122" and not "14"

0 commit comments

Comments
 (0)