Skip to content

Commit e740893

Browse files
authored
👾 add break line
1 parent 00689d3 commit e740893

File tree

1 file changed

+1
-0
lines changed
  • 1-js/05-data-types/01-primitives-methods

1 file changed

+1
-0
lines changed

1-js/05-data-types/01-primitives-methods/article.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ if (zero) { // zero is true, because it's an object
107107
On the other hand, using the same functions `String/Number/Boolean` without `new` is totally same and useful thing. They convert a value to the corresponding type: to a string, a number, or a boolean (primitive).
108108

109109
For example, this is entirely valid:
110+
110111
```js
111112
let num = Number("123"); // convert a string to number
112113
```

0 commit comments

Comments
 (0)