Skip to content

Commit b72c2eb

Browse files
authored
Merge pull request #65 from beelarr/patch-3
Typo
2 parents e28c42b + 0d35af5 commit b72c2eb

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)