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

La méthode valueOf() renvoie la valeur primitive encapsulée dans un objet {{jsxref("BigInt")}}.

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

Syntaxe

bigIntObj.valueOf()

Valeur de retour

Un grand entier (big int) représentant la valeur primitive de l'objet {{jsxref("BigInt")}} courant.

Exemples

Utiliser valueOf()

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

Spécifications

Spécification État
Proposition pour BigInt Proposition de niveau 3

Compatibilité des navigateurs

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

Voir aussi