You are viewing a single comment's thread. Return to all comments →
Try to use BigInt(value) in counting a big number
function aVeryBigSum(ar) { return ar.reduce((a, b) => BigInt(a) + BigInt(b)); }
Seems like cookies are disabled on this browser, please enable them to open this website
A Very Big Sum
You are viewing a single comment's thread. Return to all comments →
Try to use BigInt(value) in counting a big number