Open DigitalPhoneme opened 3 weeks ago
https://github.com/tanzie1313/js-arrays-lab/blob/927a5d14a996d6175799bb52a9243928007ac415/app.js#L277
value is an integer that you are trying to perform math on. total also needs to be an integer, not an array. Replace with total = 0
value
total
total = 0
https://github.com/tanzie1313/js-arrays-lab/blob/927a5d14a996d6175799bb52a9243928007ac415/app.js#L277
value
is an integer that you are trying to perform math on.total
also needs to be an integer, not an array. Replace withtotal = 0