mirror of
https://github.com/abrendan/l00kup.git
synced 2025-06-16 04:35:07 +02:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
(function () {
|
|
var BigInteger = jsbn.BigInteger;
|
|
var a = new BigInteger('91823918239182398123');
|
|
console.log(a.bitLength());
|
|
}());
|