mirror of
https://github.com/SrIzan10/full-calendar-ics-converter.git
synced 2026-06-06 00:47:04 +00:00
3 lines
117 B
TypeScript
3 lines
117 B
TypeScript
export default function getAverage(arr: number[]): number {
|
|
return arr.reduce((a, b) => a + b, 0) / arr.length;
|
|
} |