From d5c3ac938fc4b5b57b3701429ac508eef572848c Mon Sep 17 00:00:00 2001 From: Diego Torres Date: Sat, 6 Jun 2020 21:36:55 -0500 Subject: [PATCH] Match the solution with the question on task.md On task.md, " -9 " has 2 white spaces before "-9". --- .../3-primitive-conversions-questions/solution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/08-operators/3-primitive-conversions-questions/solution.md b/1-js/02-first-steps/08-operators/3-primitive-conversions-questions/solution.md index 4964a623..9a8411fb 100644 --- a/1-js/02-first-steps/08-operators/3-primitive-conversions-questions/solution.md +++ b/1-js/02-first-steps/08-operators/3-primitive-conversions-questions/solution.md @@ -10,8 +10,8 @@ true + false = 1 "4" - 2 = 2 "4px" - 2 = NaN 7 / 0 = Infinity -" -9 " + 5 = " -9 5" // (3) -" -9 " - 5 = -14 // (4) +" -9 " + 5 = " -9 5" // (3) +" -9 " - 5 = -14 // (4) null + 1 = 1 // (5) undefined + 1 = NaN // (6) " \t \n" - 2 = -2 // (7)