$parseDate
Converts milliseconds into a human-readable date or time format.
$parseDate[milliseconds; format]
Usage: Arguments:
milliseconds
: The number of milliseconds to convert.format
: Specifies the desired output format. Usedate
to get a formatted date ortime
to get a formatted time duration.
Example:
This example demonstrates converting 1000 milliseconds to a time duration.
Explanation:
The command $parseDate[1000;time]
converts 1000 milliseconds to a time format, resulting in the output "1 second".