exponentation
ts
const exponentation: OperatorFn;Defined in: operations.ts:92
Raises the first argument to the power of the subsequent arguments.
Remarks
Applies exponentiation sequentially: a ** b ** c is evaluated as (a ** b) ** c
Param
Numeric arguments (base followed by exponent(s))
Returns
Result of the exponentiation chain
Since
1.0.0
Author
Simon Kovtyk