reduce-nums
v1.0.1
Published
It is a js library for adding or multiplying all the numbers passed as direct arguments to it's add or multiply functions ( not an array ).
Downloads
3
Maintainers
Readme
Reduce Numbers
It is a js library for adding or multiplying all the numbers passed as direct arguments to it's add or multiply functions ( not an array ).
Installation
npm install reduce-nums
Usage
const { Multiply, Add } = require('reduce-nums')
console.log('multiply : ', Multiply(2, 2, 3))
// => 12
console.log('addition : ', Add(1, 2, 3))
// => 6