DEV Community

Discussion on: Daily Challenge #119 - Adding Big Numbers

Collapse
 
erezwanderman profile image
erezwanderman

A more cool JS solution:

add = (x, y) => (BigInt(x) + BigInt(y)).toString(10)