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

Returns the average of two or more numbers.

Use Array.prototype.reduce() to add each value to an accumulator, initialized with a value of 0, divide by the length of the array.

type

<T extends number>(...nums: number[]) => unknown