From af49aea3d62765395371fca6aee7c4e1c09402b1 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 15 Sep 2021 22:56:40 +0900 Subject: Global_Objects/BigInt を更新 (#2387) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/07/21 時点の英語版に同期 - `toLocaleString()`, `valueOf()` については新規翻訳 --- .../reference/global_objects/bigint/index.html | 288 -------------------- .../reference/global_objects/bigint/index.md | 289 +++++++++++++++++++++ .../global_objects/bigint/tolocalestring/index.md | 114 ++++++++ .../global_objects/bigint/valueof/index.md | 48 ++++ 4 files changed, 451 insertions(+), 288 deletions(-) delete mode 100644 files/ja/web/javascript/reference/global_objects/bigint/index.html create mode 100644 files/ja/web/javascript/reference/global_objects/bigint/index.md create mode 100644 files/ja/web/javascript/reference/global_objects/bigint/tolocalestring/index.md create mode 100644 files/ja/web/javascript/reference/global_objects/bigint/valueof/index.md (limited to 'files/ja/web') diff --git a/files/ja/web/javascript/reference/global_objects/bigint/index.html b/files/ja/web/javascript/reference/global_objects/bigint/index.html deleted file mode 100644 index c40ca5cf90..0000000000 --- a/files/ja/web/javascript/reference/global_objects/bigint/index.html +++ /dev/null @@ -1,288 +0,0 @@ ---- -title: BigInt -slug: Web/JavaScript/Reference/Global_Objects/BigInt -tags: - - BigInt - - JavaScript -translation_of: Web/JavaScript/Reference/Global_Objects/BigInt ---- -
{{JSRef}}
- -

BigInt は組み込みオブジェクトで、 {{JSxRef("Number")}} プリミティブで表現できる最大の数、 {{JSxRef("Number.MAX_SAFE_INTEGER")}} よりも大きな数値を信頼できるものとして表現する方法を提供します。 BigInt は任意に巨大な整数に使用することができます。

- -

詳細

- -

BigInt は10進数の整数リテラルの末尾に n をつけて 10n とするか、 BigInt() 関数を呼び出すことで作成することができます。

- -
const theBiggestInt = 9007199254740991n;
-
-const alsoHuge = BigInt(9007199254740991);
-// ↪ 9007199254740991n
-
-const hugeString = BigInt("9007199254740991");
-// ↪ 9007199254740991n
-
-const hugeHex = BigInt("0x1fffffffffffff");
-// ↪ 9007199254740991n
-
-const hugeBin = BigInt("0b11111111111111111111111111111111111111111111111111111");
-// ↪ 9007199254740991n
-
- -

BigInt はいくつかの点で {{JSxRef("Number")}} と似ていますが、重要ないくつかの点が異なります。 — 組込みの {{JSxRef("Math")}} オブジェクト内のメソッドでは利用できず、演算で Number のインスタンスと混ぜることができません。同じ型に統一する必要があります。ただし、BigIntNumber へ変換する際には精度が落ちることがあるので、相互に変化する場合には注意が必要です。

- -

型情報

- -

typeofBigInt に対する評価値は、"bigint" となります。

- -
typeof 1n === 'bigint'; // true
-typeof BigInt('1') === 'bigint'; // true
-
- -

Object でラップされている場合は、 BigInt は通常の "object" として扱われます。

- -
typeof Object(1n) === 'object'; // true
-
- -

演算子

- -

BigInt (または Object でラップした BigInt) を利用することができる演算子は、 +, *, -, **, % です。ビット操作演算子は、同様に利用できますが、 >>> (論理的右シフト) は BigInt が常に符号付きなので除きます。同様に、単項演算子 (+) は asm.js を破らないように対応していません。

- -
const previousMaxSafe = BigInt(Number.MAX_SAFE_INTEGER);
-// ↪ 9007199254740991
-
-const maxPlusOne = previousMaxSafe + 1n;
-// ↪ 9007199254740992n
-
-const theFuture = previousMaxSafe + 2n;
-// ↪ 9007199254740993n, this works now!
-
-const multi = previousMaxSafe * 2n;
-// ↪ 18014398509481982n
-
-const subtr = multi – 10n;
-// ↪ 18014398509481972n
-
-const mod = multi % 10n;
-// ↪ 2n
-
-const bigN = 2n ** 54n;
-// ↪ 18014398509481984n
-
-bigN * -1n
-// ↪ –18014398509481984n
-
- -

/ 演算子もすべての数値に対して、期待される通りに動作します。ただ BigIntBigDecimal ではないため、演算結果は 0 の方向に丸められます。別の言い方をすれば、小数を返すことはありません。

- -
-

BigInt を使用した場合、結果が小数となるような演算は切り捨てられます。

-
- -
const expected = 4n / 2n;
-// ↪ 2n
-
-const rounded = 5n / 2n;
-// ↪ 2n, not 2.5n
-
-
- -

比較演算

- -

BigInt は {{JSxRef("Number")}} と厳密等価ではありませんが、等価にはなります。

- -
0n === 0
-// ↪ false
-
-0n == 0
-// ↪ true
- -

{{JSxRef("Global_Objects/Number", "Number")}} と BigInt は通常通り比較できます。

- -
1n < 2
-// ↪ true
-
-2n > 1
-// ↪ true
-
-2 > 2
-// ↪ false
-
-2n > 2
-// ↪ false
-
-2n >= 2
-// ↪ true
- -

配列の要素に混在させることでき、並べ替えも可能です。

- -
const mixed = [4n, 6, -12n, 10, 4, 0, 0n];
-// ↪  [4n, 6, -12n, 10, 4, 0, 0n]
-
-mixed.sort();
-// ↪ [-12n, 0, 0n, 4n, 4, 6, 10]
-
-mixed.sort((a, b) => a - b)
-// won't work since subtraction will not work with mixed types
-// TypeError: can't convert BigInt to number
-
-// sort with an appropriate numeric comparator
-mixed.sort((a, b) => (a < b) ? -1 : ((a > b) ? 1 : 0)
-// ↪  [ -12n, 0, 0n, 4n, 4, 6, 10 ]
- -

なお、 Object にラップされた BigInt は他のオブジェクトと同様の振る舞いをします。同じインスタンス同士が比較された場合にのみ、等価となります:

- -
0n === Object(0n); // false
-Object(0n) === Object(0n); // false
-
-const o = Object(0n);
-o === o // true
-
- -

条件式

- -

BigInt が {{JSxRef("Global_Objects/Boolean", "Boolean")}} へ変換される次のような場合は、 {{JSxRef("Global_Objects/Number", "Number")}} と同様の変換が行われます。 

- - - -
if (0n) {
-  console.log('Hello from the if!');
-} else {
-  console.log('Hello from the else!');
-}
-
-// ↪ "Hello from the else!"
-
-0n || 12n
-// ↪ 12n
-
-0n && 12n
-// ↪ 0n
-
-Boolean(0n)
-// ↪ false
-
-Boolean(12n)
-// ↪ true
-
-!12n
-// ↪ false
-
-!0n
-// ↪ true
-
- -

コンストラクタ

- -
-
-

{{JSxRef("BigInt()")}}

-
-
-

新しいbigint 値を作ります。

-
-
- -

静的メソッド

- -
-
{{JSxRef("BigInt.asIntN()")}}
-
BigInt の値を -2width-1 ~ 2width-1-1 の間に丸めます。
-
{{JSxRef("BigInt.asUintN()")}}
-
BigInt の値を 0 ~ 2width-1 の間に丸めます。
-
- -

プロパティ

- -
-
{{JSxRef("BigInt.prototype")}}
-
BigInt オブジェクトへの属性追加が可能です。
-
- -

BigInt インスタンス

- -

全ての BigInt インスタンスは BigInt.prototype を継承します。このプロトタイプオブジェクトへの変更は、全ての BigInt インスタンスに影響します。

- -

メソッド

- -

{{page("/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/prototype", "Methods")}}

- -

使用方法の推奨事項

- -

型変換

- -

{{JSxRef("Number")}} と BigInt との間の型変換は精度が落ちる可能性があるため、 BigInt は値が論理的に253以上になる場合にのみ使用し、この2つの型の間で型変換を行わないこと推奨します。

- -

暗号処理

- -

BigInt で対応している演算は、実行時間が一定ではありません。従って、 BigInt暗号処理での使用には向きません

- -

JSON での使用

- -

BigInt の値は既定で JSON のシリアライズに対応していないため、{{JSxRef("JSON.stringify()")}} を BigInt 値に対して使用すると TypeError が発生します。ただし、必要であれば独自の toJSON メソッドを実装することができます。

- -
BigInt.prototype.toJSON = function() { return this.toString(); }
- -

JSON.stringify により、例外が発生する代わりに次のように文字列を生成するようになります。

- -
JSON.stringify(BigInt(1));
-// '"1"'
- -

- -

素数の計算

- -
function isPrime(p) {
-  for (let i = 2n; i * i <= p; i++) {
-    if (p % i === 0n) return false;
-  }
-  return true;
-}
-
-// Takes a BigInt as an argument and returns a BigInt
-function nthPrime(nth) {
-  let maybePrime = 2n;
-  let prime = 0n;
-
-  while (nth >= 0n) {
-    if (isPrime(maybePrime)) {
-      nth -= 1n;
-      prime = maybePrime;
-    }
-    maybePrime += 1n;
-  }
-
-  return prime;
-}
-
-nthPrime(20n)
-// ↪ 73n
- -

仕様書

- - - - - - - - - - - - -
仕様書
{{SpecName("ESDraft", "#sec-bigint-objects", "BigInt objects")}}
- -

ブラウザーの互換性

- -

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

- -

関連情報

- - diff --git a/files/ja/web/javascript/reference/global_objects/bigint/index.md b/files/ja/web/javascript/reference/global_objects/bigint/index.md new file mode 100644 index 0000000000..f42782a3ea --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/bigint/index.md @@ -0,0 +1,289 @@ +--- +title: BigInt +slug: Web/JavaScript/Reference/Global_Objects/BigInt +tags: + - BigInt + - クラス + - JavaScript + - リファレンス +browser-compat: javascript.builtins.BigInt +translation_of: Web/JavaScript/Reference/Global_Objects/BigInt +--- +{{JSRef}} + +**`BigInt`** は組み込みオブジェクトで、そのコンストラクターは `bigint` {{Glossary("Primitive", "プリミティブ")}} — または **BigInt 値** や単に **BigInt** と呼ばれることもありますが — を返します。これは 2^53 - 1 ([`Number.MAX_SAFE_INTEGER`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)、 `number` {{Glossary("Primitive", "プリミティブ")}} または *Number 値*で表すことができる最大の数) よりも大きな数を表すことができます。 BigInt 値は任意に巨大な整数に使用することができます。 + +## 解説 + +**BigInt 値**は、単に **BigInt** と呼ばれることもありますが、 `bigint` {{Glossary("Primitive", "プリミティブ")}}です。整数リテラルの末尾に `n` を追加するか、 {{jsxref("Global_Objects/BigInt/BigInt", "BigInt()")}} コンストラクターを呼び出し、整数値または文字列値を与えることで生成することができます (ただし `new` 演算子なしで)。 + +```js +const previouslyMaxSafeInteger = 9007199254740991n + +const alsoHuge = BigInt(9007199254740991) +// ↪ 9007199254740991n + +const hugeString = BigInt("9007199254740991") +// ↪ 9007199254740991n + +const hugeHex = BigInt("0x1fffffffffffff") +// ↪ 9007199254740991n + +const hugeOctal = BigInt("0o377777777777777777") +// ↪ 9007199254740991n + +const hugeBin = BigInt("0b11111111111111111111111111111111111111111111111111111") +// ↪ 9007199254740991n +``` + +BigInt はいくつかの点で Number と似ていますが、重要ないくつかの点が異なります。組み込みの [`Math`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Math) オブジェクト内のメソッドでは利用できず、演算で Number の値と混ぜることができません。同じ型に統一する必要があります。ただし、BigInt を Number へ変換する際には精度が落ちることがあるので、相互に変化する場合には注意が必要です。 + +### 型情報 + +`typeof` の `BigInt` 値 (`bigint` プリミティブ) に対する評価値は、"`bigint`" となります。 + +```js +typeof 1n === 'bigint' // true +typeof BigInt('1') === 'bigint' // true +``` + +BitInt の値は `Object` でラップすることができます。 + +```js +typeof Object(1n) === 'object' // true +``` + +### 演算子 + +以下の演算子は BigInt 値またはオブジェクトでラップした BigInt 値で使用することができます。 + + + * - % ** + +[ビット操作演算子](/ja/docs/Web/JavaScript/Reference/Operators)は、同様に利用できますが、 `>>>` (論理的右シフト) は BigInt が常に符号付きなので除外されます。 + +同様に、単項演算子 (`+`) は [asm.js を壊さないように](https://github.com/tc39/proposal-bigint/blob/master/ADVANCED.md#dont-break-asmjs)対応していません。 + +```js +const previousMaxSafe = BigInt(Number.MAX_SAFE_INTEGER) +// ↪ 9007199254740991n + +const maxPlusOne = previousMaxSafe + 1n +// ↪ 9007199254740992n + +const theFuture = previousMaxSafe + 2n +// ↪ 9007199254740993n, this works now! + +const multi = previousMaxSafe * 2n +// ↪ 18014398509481982n + +const subtr = multi - 10n +// ↪ 18014398509481972n + +const mod = multi % 10n +// ↪ 2n + +const bigN = 2n ** 54n +// ↪ 18014398509481984n + +bigN * -1n +// ↪ -18014398509481984n +``` + +`/` 演算子もすべての数値に対して、期待される通りに動作します。ただし、実数との演算では BigInt 値と演算すhる際に小数が切り捨てられます。実数を返すことはありません。 + +```js +const expected = 4n / 2n +// ↪ 2n + +const truncated = 5n / 2n +// ↪ 2n, not 2.5n +``` + +### 比較演算 + +BigInt 値は Number 値と厳密等価ではありませんが、等価にはなります。 + +```js +0n === 0 +// ↪ false + +0n == 0 +// ↪ true +``` + +Number と BigInt は通常通り比較できます。 + +```js +1n < 2 +// ↪ true + +2n > 1 +// ↪ true + +2 > 2 +// ↪ false + +2n > 2 +// ↪ false + +2n >= 2 +// ↪ true +``` + +BigInt 値と Number 値は配列の要素に混在させたり並べ替えたりすることも可能です。 + +```js +const mixed = [4n, 6, -12n, 10, 4, 0, 0n] +// ↪ [4n, 6, -12n, 10, 4, 0, 0n] + +mixed.sort() // 既定の並べ替えの動作 +// ↪ [ -12n, 0, 0n, 10, 4n, 4, 6 ] + +mixed.sort((a, b) => a - b) +// 型が混在した減算はできないので動作しない +// TypeError: can't convert BigInt value to Number value + +// 適切な数値比較関数を使用した並べ替え +mixed.sort((a, b) => (a < b) ? -1 : ((a > b) ? 1 : 0)) +// ↪ [ -12n, 0, 0n, 4n, 4, 6, 10 ] +``` + +なお、 `Object` にラップされた BigInt は他のオブジェクトと同様の振る舞いをします。同じインスタンス同士が比較された場合にのみ等価となります。 + +```js +0n === Object(0n) // false +Object(0n) === Object(0n) // false + +const o = Object(0n) +o === o // true +``` + +### 条件式 + +BigInt 値は次のような場合は Number 値のように動作します。 + +- [`Boolean`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Boolean) へ変換される場合 ( [`Boolean`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Boolean) 関数を使用して) +- [論理演算子](/ja/docs/Web/JavaScript/Reference/Operators)の `||`、`&&`、`!`、または [`if`](/ja/docs/Web/JavaScript/Reference/Statements/if...else) 文のような条件式の中で使用された場合 + +```js +if (0n) { + console.log('Hello from the if!') +} else { + console.log('Hello from the else!') +} + +// ↪ "Hello from the else!" + +0n || 12n +// ↪ 12n + +0n && 12n +// ↪ 0n + +Boolean(0n) +// ↪ false + +Boolean(12n) +// ↪ true + +!12n +// ↪ false + +!0n +// ↪ true +``` + +## コンストラクター + +- [`BigInt()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/BigInt) + - : 新しい BigInt 値を生成します。 + +

静的メソッド

+ +- [`BigInt.asIntN()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asIntN) + - : BigInt 値を符号付き整数値に丸め、その値を返します。 +- [`BigInt.asUintN()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/asUintN) + - : BigInt 値を符号なし整数値に丸め、その値を返します。 + +## インスタンスメソッド + +- [`BigInt.prototype.toLocaleString()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/toLocaleString) + - : この BigInt 値の言語に合わせた表現の文字列を返します。 [`Object.prototype.toLocaleString()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Object/toLocaleString) メソッドを上書きします。 +- [`BigInt.prototype.toString()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/toString) + - : この BigInt 値を指定された基数で表現した文字列を返します。 [`Object.prototype.toString()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Object/toString) メソッドを上書きします。 +- [`BigInt.prototype.valueOf()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/BigInt/valueOf) + - : この BigInt 値を返します。 [`Object.prototype.valueOf()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Object/valueOf) メソッドを上書きします。 + +## 使用方法の推奨事項 + +## 型変換 + +Number 値と BigInt 値との間の型変換は精度が落ちる可能性があるため、次のことを推奨します。 + +- BigInt 値は、値が 2^53 を超えることが合理的に予想される場合にのみ使用する。 +- BigInt 値と Number 値の間で型変換を行わない。 + +

暗号処理

+ +BigInt で対応している演算は、実行時間が一定ではないので、[タイミング攻撃](https://en.wikipedia.org/wiki/Timing_attack)を受ける可能性があります。したがって、 JavaScript の BigInt は暗号処理での使用には向きません。 + +### JSON での使用 + +[`JSON.stringify()`](/ja/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) を BigInt 値に対して使用すると `TypeError` が発生します。 BigInt 値は既定で JSON のシリアライズに対応していないため、ただし、必要であれば独自の `toJSON` メソッドを実装することができます。 + +```js +BigInt.prototype.toJSON = function() { return this.toString() } +``` + +`JSON.stringify` により、例外が発生する代わりに次のように文字列を生成するようになります。 + +```js +JSON.stringify(BigInt(1)) +// '"1"' +``` + +## 例 + +### 素数の計算 + +```js +// 渡された BigInt が素数であった場合は true を返します +function isPrime(p) { + for (let i = 2n; i * i <= p; i++) { + if (p % i === 0n) return false; + } + return true +} + +// 引数として BigInt 値を取り、 nth 番目の素数を BigInt 値として返します。 +function nthPrime(nth) { + let maybePrime = 2n + let prime = 0n + + while (nth >= 0n) { + if (isPrime(maybePrime)) { + nth-- + prime = maybePrime + } + maybePrime++ + } + + return prime +} + +nthPrime(20n) +// ↪ 73n +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [`Number`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Number) +- [`Number.MAX_SAFE_INTEGER`](/ja/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER) diff --git a/files/ja/web/javascript/reference/global_objects/bigint/tolocalestring/index.md b/files/ja/web/javascript/reference/global_objects/bigint/tolocalestring/index.md new file mode 100644 index 0000000000..696c778e56 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/bigint/tolocalestring/index.md @@ -0,0 +1,114 @@ +--- +title: BigInt.prototype.toLocaleString() +slug: Web/JavaScript/Reference/Global_Objects/BigInt/toLocaleString +tags: + - BigInt + - 国際化 + - Intl + - JavaScript + - メソッド + - プロトタイプ +browser-compat: javascript.builtins.BigInt.toLocaleString +--- +{{JSRef}} + +**`toLocaleString()`** メソッドは、この BigInt 値の言語に合わせた表現の文字列を返します。 + +{{EmbedInteractiveExample("pages/js/bigint-tolocalestring.html")}} + +## 構文 + +```js +toLocaleString() +toLocaleString(locales) +toLocaleString(locales, options) +``` + +### 引数 + +`locales` および `options` の引数は、この関数の動作をカスタマイズするためのもので、アプリケーションは整形の慣例を使用する言語を指定することができます。 `locales` や `options` の引数を無視する実装では、使用するロケールや返す文字列の形式はすべて実装に依存します。 + +これらの引数や使用方法について、詳しくは [`Intl.NumberFormat()` +コンストラクター](/ja/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat) を参照してください。 + +### 返値 + +指定された BigInt の言語に合わせた表現の文字列です。 + +## 性能 + +大量の数値を整形する場合は、 {{jsxref("Intl.NumberFormat")}} オブジェクトを生成して {{jsxref("Intl/NumberFormat/format", "NumberFormat.format")}} プロパティで提供される関数を使用したほうが有利です。 + +## 例 + +### `toLocaleString` の使用 + +ロケールを使用しない基本的な使用では、既定のロケールと既定のオプションで成形された文字列が返されます。 + +```js +var bigint = 3500n; + +bigint.toLocaleString(); +// "3,500" と表示 (U.S. English ロケールの場合) +``` + +### `locales` の使用 + +この例ではローカライズされた数値書式の変化形の一部を示しています。アプリケーションのユーザーインターフェイスで使用されている言語の書式を取得するには、必ず `locale` 引きお数でその言語を (場合によっては予備の言語も) 指定してください。 + +```js +var bigint = 123456789123456789n; + +// ドイツ語では千の位の区切りにピリオドを使用 +console.log(bigint.toLocaleString('de-DE')); +// → 123.456.789.123.456.789 + +// 多くのアラビア語を話す国ではアラビア語で東アラビア数字を使用 +console.log(bigint.toLocaleString('ar-EG')); +// → ١٢٣٬٤٥٦٬٧٨٩٬١٢٣٬٤٥٦٬٧٨٩ + +// インドでは千/十万/千万の区切りを使用 +console.log(bigint.toLocaleString('en-IN')); +// → 1,23,45,67,89,12,34,56,789 + +// nu 拡張キーは数値体系を要求。例えば中国語の数字の場合 +console.log(bigint.toLocaleString('zh-Hans-CN-u-nu-hanidec')); +// → 一二三,四五六,七八九,一二三,四五六,七八九 + +// 要求した言語に対応していない場合、例えばバリ語の場合、 +// 予備の言語、この場合はインドネシア語を使用 +console.log(bigint.toLocaleString(['ban', 'id'])); +// → 123.456.789.123.456.789 +``` + +### `options` の使用 + +`toLocaleString` で提供される結果は `options` 引数でカスタマイズできます。 + +```js +var bigint = 123456789123456789n; + +// 通貨書式を要求 +console.log(bigint.toLocaleString('de-DE', { style: 'currency', currency: 'EUR' })); +// → 123.456.789.123.456.789,00 € + +// 日本円には下位の単位がない +console.log(bigint.toLocaleString('ja-JP', { style: 'currency', currency: 'JPY' })) +// → ¥123,456,789,123,456,789 + +// 有効数字を 3 桁に限定 +console.log(bigint.toLocaleString('en-IN', { maximumSignificantDigits: 3 })); +// → 1,23,00,00,00,00,00,00,000 +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{jsxref("BigInt.toString()")}} diff --git a/files/ja/web/javascript/reference/global_objects/bigint/valueof/index.md b/files/ja/web/javascript/reference/global_objects/bigint/valueof/index.md new file mode 100644 index 0000000000..c0f82adbb5 --- /dev/null +++ b/files/ja/web/javascript/reference/global_objects/bigint/valueof/index.md @@ -0,0 +1,48 @@ +--- +title: BigInt.prototype.valueOf() +slug: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf +tags: + - BigInt + - JavaScript + - メソッド + - プロトタイプ + - valueOf() +browser-compat: javascript.builtins.BigInt.valueOf +translate_of: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf +--- +{{JSRef}} + +**`valueOf()`** メソッドは、 {{jsxref("BigInt")}} オブジェクトにラップされたプリミティブ値を返します。 + +{{EmbedInteractiveExample("pages/js/bigint-valueof.html","shorter")}} + +## 構文 + +```js +bigIntObj.valueOf() +``` + +### 返値 + +指定された {{jsxref("BigInt")}} オブジェクトのプリミティブ値を表す BigInt です。 + +## 例 + +### `valueOf` の使用 + +```js +typeof Object(1n); // object +typeof Object(1n).valueOf(); // bigint +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{jsxref("BigInt.prototype.toString()")}} -- cgit v1.2.3-54-g00ecf