let unixTime =1661354615;//it is time from 1970 in secondslet date =newDate(unixTime*1000);//convert to milliseconds as javascript store number in millisecondsconsole.log(date)//Wed Aug 24 2022 21:08:35 GMT+0545 (Nepal Time)//it will display your localtime with GMT +545 which means 5 hours 45 minutes forward from london.console.log(date.toUTCString())//'Wed, 24 Aug 2022 15:23:35 GMT'
let unix_timestamp =1549312452// Create a new JavaScript Date object based on the timestamp// multiplied by 1000 so that the argument is in milliseconds, not seconds.var date =newDate(unix_timestamp *1000);// Hours part from the timestampvar hours = date.getHours();// Minutes part from the timestampvar minutes ="0"+ date.getMinutes();// Seconds part from the timestampvar seconds ="0"+ date.getSeconds();// Will display time in 10:30:23 formatvar formattedTime = hours +':'+ minutes.substr(-2)+':'+ seconds.substr(-2);console.log(formattedTime);Run code snippet