Start time Script

Returns the running time in hours, minutes, and seconds.

:arrow_down:

var today = new Date();
var startTime = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();

execution.setVariable("startTime",startTime);

 

Output : startTime : 13:22:13