Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
coyotte508
/
js-hub
like
0
Model card
Files
Files and versions
xet
Community
main
js-hub
/
utils
/
sum.ts
coyotte508
HF Staff
Add 1 files
21dd449
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
123 Bytes
/**
* Sum of elements in array
*/
export
function
sum
(
arr:
number
[]
):
number
{
return
arr.
reduce
(
(
a, b
) =>
a + b,
0
);
}