Javascript – How to add arrays of arrays using the for-loop?
I'm trying to add the arrays inside an array and get a single number from each array. The array looks as follow: let list = [[1, 2, 3], [4, 5, 6]]; And add the results to the array This is…