Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note

Not all supported methods may be in the Functions and Properties drop-down list. If not available, you may type it in.

...

Description

Returns the base to the exponent power.

This is similar to the JavaScript Math.pow().

Syntax


Code Block
Math.pow(base, exponent)


Example

Expression: Math.pow(129, 21.5)

Result: 14427

random

Description

Returns a floating-point, pseudo-random number from 0 (inclusive) up to but not including 1.

This is similar to the JavaScript Math.random().

Syntax


Code Block
Math.random()


Example

Expression: Math.random()

Result: 0.29628396818343006

randomUUID

DescriptionGenerates a random UUID string.
Syntax


Code Block
Math.randomUUID()


Example

Expression: Math.randomUUID()

Result: 2c28e2c0-9767-11e4-9a0d-c3f2b01def6d

...