Returns the running time in hours, minutes, and seconds.
var today = new Date();
var startTime = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
execution.setVariable("startTime",startTime);
Output : startTime : 13:22:13