From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../global_objects/number/parseint/index.html | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 files/ja/web/javascript/reference/global_objects/number/parseint/index.html (limited to 'files/ja/web/javascript/reference/global_objects/number/parseint') diff --git a/files/ja/web/javascript/reference/global_objects/number/parseint/index.html b/files/ja/web/javascript/reference/global_objects/number/parseint/index.html new file mode 100644 index 0000000000..3e07c4e573 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/number/parseint/index.html @@ -0,0 +1,82 @@ +--- +title: Number.parseInt() +slug: Web/JavaScript/Reference/Global_Objects/Number/parseInt +tags: + - ECMAScript 2015 + - JavaScript + - Method + - Number + - メソッド +translation_of: Web/JavaScript/Reference/Global_Objects/Number/parseInt +--- +
{{JSRef}}
+ +

Number.parseInt() は、文字列の引数を解析し、指定された基数の整数値を返します。

+ +
{{EmbedInteractiveExample("pages/js/number-parseint.html", "taller")}}
+ + + +

構文

+ +
Number.parseInt(string,[ radix])
+ +

引数

+ +
+
+
string
+
解析する値。この引数が文字列でない場合、抽象操作 ToString を用いて文字列に変換されます。この引数では先頭の{{glossary("whitespace", "ホワイトスペース")}}は無視されます。
+
radix {{optional_inline}}
+
2 から 36 までの整数で、 string基数 (数学的記数法の底) を表します。これは既定値が 10 ではないので注意してください。
+
+
+ +

返値

+ +

指定された string を解析した整数値です。

+ +

radix2 よりも小さいか 36 よりも大きい、または最初のホワイトスペース以外の文字が数値に変換できない場合は {{jsxref("NaN")}} が返されます。

+ +

解説

+ +

このメソッドは、グローバルの {{jsxref("parseInt", "parseInt()")}} 関数と同じ機能です。

+ +
Number.parseInt === parseInt // true
+ +

また、これは ECMAScript 2015 の一部です (グローバルのモジュール化のため)。詳細や例は {{jsxref("parseInt", "parseInt()")}} を参照してください。

+ +

ポリフィル

+ +
if (Number.parseInt === undefined) {
+    Number.parseInt = window.parseInt
+}
+
+ +

仕様書

+ + + + + + + + + + + + +
仕様書
{{SpecName('ESDraft', '#sec-number.parseint', 'Number.parseInt')}}
+ +

ブラウザーの互換性

+ + + +

{{Compat("javascript.builtins.Number.parseInt")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf