Hi,
Can anyone achive converting a timestamp to a date and time?
Example: 1625474749.049600 to 12/01/2022 ?
Hi,
Can anyone achive converting a timestamp to a date and time?
Example: 1625474749.049600 to 12/01/2022 ?
I’m guessing there’s a JavaScript function for this.
Found this online…try it.
String date = new java.text.SimpleDateFormat("MM/dd/yyyy HH:mm:ss").format(new java.util.Date( p1 * 1000 ));
return date;