About 13,300 results
Open links in new tab
  1. Date - JavaScript | MDN - MDN Web Docs

    JavaScript Date objects represent a single moment in time in a platform-independent format. Date objects encapsulate an integral number that represents milliseconds since the midnight at the …

  2. JavaScript Dates - W3Schools

    6 days ago · When a date object is created, a number of methods allow you to operate on it. Date methods allow you to get and set the year, month, day, hour, minute, second, and millisecond of date …

  3. Date and time - The Modern JavaScript Tutorial

    Oct 14, 2022 · We can always create a date from a timestamp using new Date(timestamp) and convert the existing Date object to a timestamp using the date.getTime() method (see below).

  4. JavaScript Date - GeeksforGeeks

    Jul 11, 2025 · The JavaScript Date object represents a specific moment in time, measured in milliseconds since the Unix Epoch (January 1, 1970). It's crucial for working with date and time in …

  5. JavaScript Date Objects - W3Schools

    5 days ago · Date methods allow you to get and set the year, month, day, hour, minute, second, and millisecond of date objects, using either local time or UTC (universal, or GMT) time.

  6. Date - JavaScript | MDN - devdoc.net

    The JavaScript Date object provides uniform behavior across platforms. The time value can be passed between systems to create a date that represents the same moment in time.

  7. JavaScript Date Methods - W3Schools

    The new Date () Constructor In JavaScript, date objects are created with new Date(). new Date() returns a date object with the current date and time.

  8. Date JavaScript API

    Parses string into a date and returns the number of milliseconds this date is from 01 January, 1970 UTC. Use new Date(string) to get a Date object from a string.

  9. Understanding Date and Time Methods in JavaScript (Beginner’s Guide)

    Oct 22, 2025 · JavaScript provides a powerful built-in tool called the Date object, which helps you easily create, manage, and format dates and times. This beginner-friendly guide breaks everything down in …

  10. Working with Date-Time in JavaScript: A Complete Developer's Guide

    Jan 10, 2025 · Master JavaScript date and time handling from basics to advanced patterns. Learn Date API quirks, timezone management, modern libraries, and production-ready patterns for building …