Skip to content

Commit d5c3ac9

Browse files
authored
Match the solution with the question on task.md
On task.md, " -9 " has 2 white spaces before "-9".
1 parent 020f2ea commit d5c3ac9

File tree

1 file changed

+2
-2
lines changed
  • 1-js/02-first-steps/08-operators/3-primitive-conversions-questions

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ true + false = 1
1010
"4" - 2 = 2
1111
"4px" - 2 = NaN
1212
7 / 0 = Infinity
13-
" -9 " + 5 = " -9 5" // (3)
14-
" -9 " - 5 = -14 // (4)
13+
" -9 " + 5 = " -9 5" // (3)
14+
" -9 " - 5 = -14 // (4)
1515
null + 1 = 1 // (5)
1616
undefined + 1 = NaN // (6)
1717
" \t \n" - 2 = -2 // (7)

0 commit comments

Comments
 (0)