Match the solution with the question on task.md

On task.md, " -9  " has 2 white spaces before "-9".
This commit is contained in:
Diego Torres 2020-06-06 21:36:55 -05:00 committed by GitHub
parent 020f2ea5e2
commit d5c3ac938f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,8 @@ true + false = 1
"4" - 2 = 2 "4" - 2 = 2
"4px" - 2 = NaN "4px" - 2 = NaN
7 / 0 = Infinity 7 / 0 = Infinity
" -9 " + 5 = " -9 5" // (3) " -9 " + 5 = " -9 5" // (3)
" -9 " - 5 = -14 // (4) " -9 " - 5 = -14 // (4)
null + 1 = 1 // (5) null + 1 = 1 // (5)
undefined + 1 = NaN // (6) undefined + 1 = NaN // (6)
" \t \n" - 2 = -2 // (7) " \t \n" - 2 = -2 // (7)