Function: roundDown()
Rounds a value down to a given number of decimal places.
Syntax
roundDown(listOfValues, decimalPlace)
Argument | Type | Description |
---|---|---|
listOfValues | Array | List of values to be assessed |
decimalPlace | Integer | Decimal place precision to be used |
Examples
roundDown(in.value, 2)
Where in.value contains [12.343,12.345], roundDown() returns [12.34, 12.34]