In this Page
...
Description | Returns the largest integer less than or equal to a number "x". This is similar to the JavaScript Math.floor(). | ||
---|---|---|---|
Syntax |
| ||
Example | Expression: Math.floor(3342.3) Result: 3342 |
round
Description | Returns the clo. This is similar to the JavaScript Math.max(). | |||
---|---|---|---|---|
Syntax |
Code Block |
---|
Math.round(value1) |
Expression: Math.max(10,12,30)
Result: 30
max
Description | Returns the largest number in a series of supplied numbers. This is similar to the JavaScript Math.max(). | ||
---|---|---|---|
Syntax |
| ||
Example | Expression: Result: 30 |
...
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 |
| ||
Example | Expression: Result: 0.29628396818343006 |
randomUUID
Description | Generates a random UUID string. | ||
---|---|---|---|
Syntax |
| ||
Example | Expression: Result: 2c28e2c0-9767-11e4-9a0d-c3f2b01def6d |
round
Description | Returns the number of the value rounded off to the nearest integer. This is similar to the JavaScript Math.round(). | ||
---|---|---|---|
Syntax |
| ||
Example | Expression: Result: 3 Expression: Result: 4 Expression: Result: -3 |
...