factorial-calc
v1.0.0
Published
npm package to calculates the factorial of a given "n" number
Downloads
4
Readme
Installation
You can install this package via npm:
npm install factorial-calc
Usage
const factorial = require("factorial-calc");
factorial(5); // 5*4*3*2*1 -> 120