Javascript BigInt() function

Introduction

The Javascript BigInt() function creates BigInt objects.

BigInt(value);
Parameters Meaning
valueThe 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);



PreviousNext

Related