arrayprogressionexample
v1.0.0
Published
make arrays of number elements every of them are part of progression.
Downloads
1
Readme
arrayprogressionexample
Return array of elements of progression.
Install
npm i arrayprogressionexample --save
Usage
'use strict'
const arrayprogression = require('arrayprogressionexample');
let arithmeticArrayProgression = arrayprogression.makeArrayOfArithmeticProgression(1,0.1,5);
let geometricArrayProgression = arrayprogression.makeArrayOfGeometricProgression(1,0.1,5);