mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
9 lines
121 B
JavaScript
9 lines
121 B
JavaScript
function squareSum(numbers) {
|
|
let result = 0;
|
|
|
|
for (let x of numbers) {
|
|
result += x * x;
|
|
}
|
|
|
|
return result;
|
|
}
|