--- title: BigInt.prototype.valueOf() slug: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf ---
valueOf()
方法返回 {{jsxref("BigInt")}} 对象包装的原始值。
bigIntObj.valueOf()
表示指定 {{jsxref("BigInt")}} 对象的原始 BigInt 值。
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")}}