Open In App

JavaScript BigInt constructor Property

Last Updated : 26 May, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

JavaScript BigInt constructor Property in Javascript is used to return the BigInt constructor function for the object. The function which is returned by this property is just the reference to this function, not a BigInt containing the function’s name. The JavaScript number constructor, string constructor, and boolean constructor return function Number() { [native code] }, function String() { [native code] }, and function Boolean() { [native code] } respectively.

Syntax:

bigint.constructor

Return Value: BigInt() { [native code] }

The below example illustrates the use of the BigInt constructor Property:

Example 1: This example shows the basic use of the BigInt constructor property in JavaScript.

Javascript




function func() {
    let big = BigInt("244545654");
    let value = big.constructor;
    console.log(value);
}
func();


Output:

Æ’ BigInt() { [native code] }

Example 2: This example uses the BigInt constructor property of Javascript.

Javascript




function myGeeks() {
    let big = BigInt("234234325");
 
    console.log(big.constructor);
}
myGeeks()


Output:

Æ’ BigInt() { [native code] }

Supported Browsers:

  • Chrome
  • Edge
  • Firefox
  • Opera
  • Safari

We have a complete list of Javascript BigInt methods, to check those please go through the JavaScript BigInt Complete Reference article.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads