Skip to main content
variable sum
import { sum } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Returns the sum of two or more numbers/arrays.

Use Array.prototype.reduce() to add each value to an accumulator, initialized with a value of 0.

type

(...arr: number[]) => unknown