Skip to content

Commit 66214c7

Browse files
committed
conflict fix
1 parent 7999138 commit 66214c7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,16 @@ alert( 2 + '1' ); // "21"
5656
```js run
5757
alert(2 + 2 + '1' ); // "41" and not "221"
5858
```
59+
@@@needs translation@@@
5960

60-
<<<<<<< HEAD
61+
@@@old part@@@
6162
تبدیل و الصاق رشته‌ها یکی از ویژگی‌های خاص عملگر + است. دیگر عملگرهای ریاضیاتی فقط با اعداد کار می‌کنند و همیشه operand خود را به number تبدیل می‌کنند.
62-
=======
63+
@@@old part@@@
64+
@@@new part@@@
65+
6366
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'`.
64-
>>>>>>> 97ef86242f9f236b13152e1baf52a55c4db8728a
67+
@@@new part@@@
68+
@@@needs translation@@@
6569
6670
@@@needs translation@@@
6771
@@@old part@@@

1-js/02-first-steps/14-switch/article.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,7 @@ switch (a) {
4747
break;
4848
*/!*
4949
case 5:
50-
<<<<<<< HEAD
51-
alert( "Too large" );
52-
=======
5350
alert( 'Too big' );
54-
>>>>>>> 97ef86242f9f236b13152e1baf52a55c4db8728a
5551
break;
5652
default:
5753
alert( "I don't know such values" );

0 commit comments

Comments
 (0)