--- title: BigInt.prototype.valueOf() slug: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf ---
{{JSRef}}

valueOf() 方法返回 {{jsxref("BigInt")}} 对象包装的原始值。

{{EmbedInteractiveExample("pages/js/bigint-valueof.html")}}

语法

bigIntObj.valueOf()

返回值

表示指定 {{jsxref("BigInt")}} 对象的原始 BigInt 值。

例子

Using valueOf

typeof Object(1n); // object
typeof Object(1n).valueOf(); // bigint

标准

Specification Status
{{SpecName('ESDraft', '#sec-bigint.prototype.valueof', 'BigInt.prototype.valueOf()')}} {{Spec2('ESDraft')}}

浏览器支持

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

请参阅