You are viewing a single comment's thread. Return to all comments →
function extraLongFactorials(n) { let f = BigInt(1); for(let i=BigInt(n);i>1;i--){ f=(f*i); } console.log(f.toString()); }
Seems like cookies are disabled on this browser, please enable them to open this website
Extra Long Factorials
You are viewing a single comment's thread. Return to all comments →
Javascript