Skip to content

Commit 18b1314

Browse files
committed
closes #3096
1 parent c99d740 commit 18b1314

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ undefined + 1 = NaN // (6)
2222
4. The subtraction always converts to numbers, so it makes `" -9 "` a number `-9` (ignoring spaces around it).
2323
5. `null` becomes `0` after the numeric conversion.
2424
6. `undefined` becomes `NaN` after the numeric conversion.
25-
7. Space characters, are trimmed off string start and end when a string is converted to a number. Here the whole string consists of space characters, such as `\t`, `\n` and a "regular" space between them. So, similarly to an empty string, it becomes `0`.
25+
7. Space characters are trimmed off string start and end when a string is converted to a number. Here the whole string consists of space characters, such as `\t`, `\n` and a "regular" space between them. So, similarly to an empty string, it becomes `0`.

0 commit comments

Comments
 (0)