6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
|
(function () {
|
||
|
var BigInteger = jsbn.BigInteger;
|
||
|
var a = new BigInteger('91823918239182398123');
|
||
|
console.log(a.bitLength());
|
||
|
}());
|