--- title: BigInt.prototype.valueOf() slug: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf tags: - BigInt - JavaScript - Method - Prototype - Reference - valueOf() translation_of: Web/JavaScript/Reference/Global_Objects/BigInt/valueOf original_slug: Web/JavaScript/Reference/Objets_globaux/BigInt/valueOf ---
La méthode valueOf()
renvoie la valeur primitive encapsulée dans un objet {{jsxref("BigInt")}}.
bigIntObj.valueOf()
Un grand entier (big int) représentant la valeur primitive de l'objet {{jsxref("BigInt")}} courant.
valueOf()
typeof Object(1n); // object typeof Object(1n).valueOf(); // bigint
Spécification | État |
---|---|
Proposition pour BigInt |
Proposition de niveau 3 |
{{Compat("javascript.builtins.BigInt.valueOf")}}