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