Skip to content

POWER

Returns the input number raised to the power of the exponent provided.

js
POWER(input_number, exponent)

Parameters

  • input_number - Specifies the base number.
  • exponent - The exponent for which the base is to be raised to.

Examples

js
POWER(2, 4)

Result: 16