Skip to main content
Module

x/simplestatistics/src/factorial.js>default

simple statistics for node & browser javascript
Go to Latest
function default
import { default } from "https://deno.land/x/simplestatistics@v7.7.5/src/factorial.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