We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f44cba8 commit 12ef7fcCopy full SHA for 12ef7fc
1-js/05-data-types/02-number/article.md
@@ -417,7 +417,7 @@ To write big numbers:
417
For different numeral systems:
418
419
- Can write numbers directly in hex (`0x`), octal (`0o`) and binary (`0b`) systems
420
-- `parseInt(str, base)` parses an integer from any numeral system with base: `2 ≤ base ≤ 36`.
+- `parseInt(str, base)` parses the string `str` into an integer in numeral system with given `base`, `2 ≤ base ≤ 36`.
421
- `num.toString(base)` converts a number to a string in the numeral system with the given `base`.
422
423
For converting values like `12pt` and `100px` to a number:
0 commit comments