Please open console also to see logs (Neglect if already opened)

Date(): Mon Apr 07 2025 15:32:03 GMT+0000 (Coordinated Universal Time)

new Date(): Mon Apr 07 2025 15:32:03 GMT+0000 (Coordinated Universal Time)

Date.now() Returns the numeric value corresponding to the current time—the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC, with leap seconds ignored. Date.now(): 1744039923598

Date.parse('Sat Feb 27 2021 19:41:07 GMT+0530 (India Standard Time)'): 1614435067000

Date.UTC(year[, month[, day[, hour[, minute[, second[, millisecond]]]]]]) : Date.UTC(2021, 01, 01): 1612137600000

date.getDate(): 7

date.getDay(): 1

date.getFullYear(): 2025

date.getHours(): 15

date.getMilliseconds(): 580

date.getMinutes(): 32

date.getMonth(): 3

date.getSeconds(): 3

date.getTime(): 1744039923580

date.getTimezoneOffset(): 0

date.getUTCDate(): 7

date.getUTCDay(): 1

date.getUTCFullYear(): 2025

date.getUTCHours(): 15

date.getUTCMilliseconds(): 580

date.getUTCMinutes(): 32

date.getUTCMonth(): 3

date.getUTCSeconds(): 3

date.getYear(): 125

date.toDateString(): Mon Apr 07 2025

date.toISOString(): 2025-04-07T15:32:03.580Z

date.toJSON(): 2025-04-07T15:32:03.580Z

date.toGMTString(): Mon, 07 Apr 2025 15:32:03 GMT

date.toLocaleDateString(): 4/7/2025

date.toLocaleString(): 07/04/2025, 15:32:03

date.toLocaleTimeString(): 3:32:03 PM

date.toString(): Mon Apr 07 2025 15:32:03 GMT+0000 (Coordinated Universal Time)

date.toTimeString(): 15:32:03 GMT+0000 (Coordinated Universal Time)

date.toUTCString(): Mon, 07 Apr 2025 15:32:03 GMT

The number of milliseconds between 1 January 1970 00:00:00 UTC and the given date. date.valueOf(): 1744039923580

Convert Seconds To hh:mm:ss Format using let hhmmss = new Date(SECONDS * 1000).toISOString().substr(11, 8); where SECONDS = 3500: 00:58:20