--- id: 5a23c84252665b21eecc8042 title: Sum of squares challengeType: 5 forumTopicId: 302334 --- ## Description
Write a function to find the sum of squares of an array of integers.
## Instructions
## Tests
```yml tests: - text: sumsq should be a function. testString: assert(typeof sumsq == 'function'); - text: sumsq([1, 2, 3, 4, 5]) should return a number. testString: assert(typeof sumsq([1, 2, 3, 4, 5]) == 'number'); - text: sumsq([1, 2, 3, 4, 5]) should return 55. testString: assert.equal(sumsq([1, 2, 3, 4, 5]), 55); - text: sumsq([25, 32, 12, 7, 20]) should return 2242. testString: assert.equal(sumsq([25, 32, 12, 7, 20]), 2242); - text: sumsq([38, 45, 35, 8, 13]) should return 4927. testString: assert.equal(sumsq([38, 45, 35, 8, 13]), 4927); - text: sumsq([43, 36, 20, 34, 24]) should return 5277. testString: assert.equal(sumsq([43, 36, 20, 34, 24]), 5277); - text: sumsq([12, 33, 26, 18, 1, 16, 3]) should return 2499. testString: assert.equal(sumsq([12, 33, 26, 18, 1, 16, 3]), 2499); ```
## Challenge Seed
```js function sumsq(array) { } ```
## Solution
```js function sumsq(array) { var sum = 0; var i, iLen; for (i = 0, iLen = array.length; i < iLen; i++) { sum += array[i] * array[i]; } return sum; } ```