Project Euler
Problem 13: Large Sum

Work out the first ten digits of the sum of the following one-hundred 50-digit numbers.

Show


Javascript can't work directly with 50-digit numbers so I made a series of functions to add strings of numbers.

I add the strings one at a time and store the value as a string in another variable.

###,###