1.0.1 • Published 4 years ago

minmaxaverage v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

minMaxAverage

You need to get the min number, max number or the Avarage number of an Array, you can use this package.

Install Package:

$ npm install minmaxaverage

Funcions:

Functions recives an Array of numbers:
Ej: 1,2,3,4,5,6,7,8,9

const getMaxNumber = (numbersArray) =>
   );

const getMinNumber = (numbersArray) =>
   );

const getAverage = (numbersArray) =>
   );