Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I fixed it for any array length, and it kept failing the test cases. I then had it print out the results, and it was getting the correct totals, but then ending with an unspecified error. I just hit submit final and it got accepted.
function squareSum(numbers){
var numSum = 0;
for (var i=0;i<numbers.length;i++){
numSum+=(Math.pow(numbers[i],2));
}
return numSum;
}
This comment is hidden because it contains spoiler information about the solution