Skip to main content
File

title: average tags: math,array,beginner

TS JS JS

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.

const average = <T extends number>(...nums: number[]) =>
  nums.reduce((acc, val) => acc + val, 0) / nums.length;
average(...[1, 2, 3, 4]); // 2.5
average(1, 2, 3); // 2