pow

fun pow(base: Number, to: Number): Number

Return

base raised to the power of to

Parameters

base

base number

to

exponent number. If it is a floating-point number, it will be truncated to an integer

Chaining

This function is designed to be chained with other function calls:
Number::pow to:{Number} -> Number