Menu

gitpiper

average javascript Code Snippet in 2024

matharraybeginner

Last Updated: 15 March 2024

Calculates 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 the resulting array by its length.
const average = (...nums) => nums.reduce((acc, val) => acc + val, 0) / nums.length;
average(...[1, 2, 3]); // 2 average(1, 2, 3); // 2

javascript snippet similar to average For You in March 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️