Factorial
  • 27 May 2022
  • 1 Minute to read
  • Dark
    Light
  • PDF

Factorial

  • Dark
    Light
  • PDF

Article Summary

Returns the factorial of the given number, i.e. value of the mathematical notation _n!_.

Function signature

FACTORIAL(number: Number) => Number
ParameterDescription
NumberNumber to calculate factorial

Examples

FormulaReturn value
FACTORIAL(1)1
FACTORIAL(4)24
FACTORIAL(0)1

Was this article helpful?

What's Next