Skip to content

Commit 9b7963f

Browse files
committed
Conflicts fixed on "Basic operators, maths" solution page in french
language
1 parent 38acca4 commit 9b7963f

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

1-js/02-first-steps/08-operators/3-primitive-conversions-questions/solution.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,8 @@ true + false = 1
99
"$" + 4 + 5 = "$45"
1010
"4" - 2 = 2
1111
"4px" - 2 = NaN
12-
<<<<<<< HEAD
13-
7 / 0 = Infinity
14-
" -9 " + 5 = " -9 5" // (3)
15-
" -9 " - 5 = -14 // (4)
16-
=======
1712
" -9 " + 5 = " -9 5" // (3)
1813
" -9 " - 5 = -14 // (4)
19-
>>>>>>> 7533c719fbf62ba57188d6d51fe4c038b282bd0c
2014
null + 1 = 1 // (5)
2115
undefined + 1 = NaN // (6)
2216
" \t \n" - 2 = -2 // (7)

1-js/02-first-steps/08-operators/3-primitive-conversions-questions/task.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,8 @@ true + false
1616
"$" + 4 + 5
1717
"4" - 2
1818
"4px" - 2
19-
<<<<<<< HEAD
20-
7 / 0
21-
" -9\n" + 5
22-
" -9\n" - 5
23-
=======
2419
" -9 " + 5
2520
" -9 " - 5
26-
>>>>>>> 7533c719fbf62ba57188d6d51fe4c038b282bd0c
2721
null + 1
2822
undefined + 1
2923
" \t \n" - 2

0 commit comments

Comments
 (0)