PR-URL: https://github.com/nodejs/node/pull/51913 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
(function () {
|
|
var BigInteger = jsbn.BigInteger;
|
|
var a = new BigInteger('91823918239182398123');
|
|
console.log(a.bitLength());
|
|
}());
|