From 12ef7fc704b77af7f1e4928fdc08229c740f84e5 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 28 Sep 2019 19:41:22 +0300 Subject: [PATCH] Update article.md --- 1-js/05-data-types/02-number/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/article.md b/1-js/05-data-types/02-number/article.md index 634baf15..7da5df20 100644 --- a/1-js/05-data-types/02-number/article.md +++ b/1-js/05-data-types/02-number/article.md @@ -417,7 +417,7 @@ To write big numbers: For different numeral systems: - Can write numbers directly in hex (`0x`), octal (`0o`) and binary (`0b`) systems -- `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`. - `num.toString(base)` converts a number to a string in the numeral system with the given `base`. For converting values like `12pt` and `100px` to a number: