Skip to content

POW

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

js
POW(input_number, exponent)
POW(input_number, exponent)

Parameters

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

Examples

js
POW(2, 4)
POW(2, 4)

Result: 16