5min
formatPercent()
Converts a given value of type Percent into a String.
formatPercent(percent[, format][, locale])
- percent - the Percent value to be converted to a String
- places - the number of places of the returned value
- locale -
- Return type: String
formatPercent(.5) returns 50% as a String.
Input type | Return type | Logic |
Percent | String | If a Percent value is passed, it's value will returned as a String. |
Unsupported data types | Null | Unsupported data types return Null. |