We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the SizedBigInt wiki!
test:
function toBitString(l,n) { return n.toString(2).padStart(l,'0'); } function bigInt_log2(a){ for(var count=0; a>1n; count++) a = a/2n return count }