Skip to main content
Module

x/simplestatistics/index.js>factorial

simple statistics for node & browser javascript
Go to Latest
function factorial
import { factorial } from "https://deno.land/x/simplestatistics@v7.7.5/index.js";

A Factorial, usually written n!, is the product of all positive integers less than or equal to n. Often factorial is implemented recursively, but this iterative approach is significantly faster and simpler.

Examples

factorial(5); // => 120

Parameters

n

input, must be an integer number 1 or greater