Introduction
The Javascript BigInt()
function creates BigInt objects.
BigInt(value);
Parameters | Meaning |
---|
value | The numeric value. Can be a string or an integer. |
let a = BigInt(64);
console.log(a);
//a = new BigInt(64);//throw error
//console.log(a);
PreviousNextRelated