JavaScript | BigInt.prototype.valueOf() Method
The BigInt.prototype.toString() method is an inbuilt method in JavaScript which is used to return the wrapped primitive value of a BigInt object.
Syntax:
bigIntObj.valueOf()
Parameters: This method does not accept any parameter.
Return value: This method returns a BigInt representing the primitive value of the specified BigInt object.
Below examples illustrate the BigInt.prototype.toString() method in JavaScript:
Example 1:
console.log( typeof Object(1324n)); console.log( typeof Object(24324).valueOf()); |
chevron_right
filter_none
Output:
"object" "number"
Example 2:
console.log( typeof Object( "GeeksforGeeks" )); console.log( typeof Object( "GeeksforGeeks" ).valueOf()); |
chevron_right
filter_none
Output:
"object" "string"
Supported Browsers: The browsers supported by BigInt.prototype.valueOf() method are listed below:
- Google Chrome
- Firefox
- Opera
- Edge