mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-22 08:33:48 +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;
|
|
}
|