From 1bfdae50e4a2fe0835a4c3d94640d2abe31cefd7 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 21 Sep 2021 11:20:08 +0900 Subject: Global_Objects/BigInt/BigInt の変換準備 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../global_objects/bigint/bigint/index.html | 63 ---------------------- .../global_objects/bigint/bigint/index.md | 63 ++++++++++++++++++++++ 2 files changed, 63 insertions(+), 63 deletions(-) delete mode 100644 files/ja/web/javascript/reference/global_objects/bigint/bigint/index.html create mode 100644 files/ja/web/javascript/reference/global_objects/bigint/bigint/index.md (limited to 'files/ja/web') diff --git a/files/ja/web/javascript/reference/global_objects/bigint/bigint/index.html b/files/ja/web/javascript/reference/global_objects/bigint/bigint/index.html deleted file mode 100644 index ff495fbe93..0000000000 --- a/files/ja/web/javascript/reference/global_objects/bigint/bigint/index.html +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: BigInt() コンストラクター -slug: Web/JavaScript/Reference/Global_Objects/BigInt/BigInt -tags: - - BigInt - - Constructor - - JavaScript - - Reference - - コンストラクター -translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/BigInt ---- -
{{JSRef}}
- -

BigInt() コンストラクターは、 {{jsxref("BigInt")}} オブジェクトを生成するために使用します。

- -

構文

- -
BigInt(value);
-
- -

引数

- -
-
value
-
作成しようとしているオブジェクトの数値。文字列または整数にすることができます。
-
- -
-

メモ: BigInt() は {{JSxRef("Operators/new", "new")}} 演算子と共には使用されません。

-
- -

- -

新しい BigInt の生成

- -
BigInt(123);
-// 123n
-
- -

仕様書

- - - - - - - - - - - - -
仕様書
{{SpecName('ESDraft', '#sec-bigint-constructor', 'BigInt constructor')}}
- -

ブラウザーの互換性

- -

{{Compat("javascript.builtins.BigInt.BigInt")}}

- -

関連情報

- - diff --git a/files/ja/web/javascript/reference/global_objects/bigint/bigint/index.md b/files/ja/web/javascript/reference/global_objects/bigint/bigint/index.md new file mode 100644 index 0000000000..ff495fbe93 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/bigint/bigint/index.md @@ -0,0 +1,63 @@ +--- +title: BigInt() コンストラクター +slug: Web/JavaScript/Reference/Global_Objects/BigInt/BigInt +tags: + - BigInt + - Constructor + - JavaScript + - Reference + - コンストラクター +translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/BigInt +--- +
{{JSRef}}
+ +

BigInt() コンストラクターは、 {{jsxref("BigInt")}} オブジェクトを生成するために使用します。

+ +

構文

+ +
BigInt(value);
+
+ +

引数

+ +
+
value
+
作成しようとしているオブジェクトの数値。文字列または整数にすることができます。
+
+ +
+

メモ: BigInt() は {{JSxRef("Operators/new", "new")}} 演算子と共には使用されません。

+
+ +

+ +

新しい BigInt の生成

+ +
BigInt(123);
+// 123n
+
+ +

仕様書

+ + + + + + + + + + + + +
仕様書
{{SpecName('ESDraft', '#sec-bigint-constructor', 'BigInt constructor')}}
+ +

ブラウザーの互換性

+ +

{{Compat("javascript.builtins.BigInt.BigInt")}}

+ +

関連情報

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