math-avg

Get the average of numbers

Usage no npm install needed!

<script type="module">
  import mathAvg from 'https://cdn.skypack.dev/math-avg';
</script>

README

math-avg

Get the average of numbers

Install

$ npm install --save math-avg

Usage

import mathAverage from 'math-avg';

mathAverage(1, 3);
//=> 2

mathAverage([1, 3]);
//=> 2

Related