I need to convert a string to BigInt like BigInteger
in Javascript
Example
var reqId = "78099864177253771992779766288266836166272662";
var result = parseInt(reqId);
document.write(result);
Resultant value not matching since JavaScript only allows integers up to (2^53)-1.
Is there any way to overcome this?