We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 020f2ea commit d5c3ac9Copy full SHA for d5c3ac9
1-js/02-first-steps/08-operators/3-primitive-conversions-questions/solution.md
@@ -10,8 +10,8 @@ true + false = 1
10
"4" - 2 = 2
11
"4px" - 2 = NaN
12
7 / 0 = Infinity
13
-" -9 " + 5 = " -9 5" // (3)
14
-" -9 " - 5 = -14 // (4)
+" -9 " + 5 = " -9 5" // (3)
+" -9 " - 5 = -14 // (4)
15
null + 1 = 1 // (5)
16
undefined + 1 = NaN // (6)
17
" \t \n" - 2 = -2 // (7)
0 commit comments