JS - Date Object
Objects that contain values that represent dates and times, these date objects can be formatted and changed.
const date1 = new Date()
console.log(date1)
// 2026-04-13T01:40:46.976Z
This gives me cur
javascriptfromscratch.hashnode.dev2 min read