JavaScript Date Objects

JavaScript Date Objects let us work with dates:

Mon Feb 24 2025 06:31:40 GMT+0330 (Iran Standard Time)

Examples

const d = new Date();

const d = new Date("2022-03-25");

 

Note

Date objects are static. The “clock” is not “running”.

The computer clock is ticking, date objects are not.

Continue reading JavaScript Date Objects