UNB/ CS/ David Bremner/ teaching/ cs2613/ books/ mdn/ Reference/ Global Objects/ BigInt/ BigInt.prototype.valueOf()

The valueOf() method of BigInt values returns the wrapped primitive value of a BigInt object.

Syntax

valueOf()

Parameters

None.

Return value

A BigInt representing the primitive value of the specified BigInt object.

Examples

Using valueOf

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

Specifications

Browser compatibility

See also