Skip to content

Commit 0d35af5

Browse files
authored
Typo
Typo in parseInt section.
1 parent 2a0516d commit 0d35af5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/02-number/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ alert( parseFloat('12.3.4') ); // 12.3, the second point stops the reading
362362
Of course, there are situations when `parseInt/parseFloat` return `NaN`. It happens when no digits could be read:
363363

364364
```js run
365-
alert( parseInt('a123') ); // NaN, the first symbol stops he process
365+
alert( parseInt('a123') ); // NaN, the first symbol stops the process
366366
```
367367

368368
````smart header="The second argument of `parseInt(str, radix)`"

0 commit comments

Comments
 (0)