About 12,800 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

    JavaScript Date Output By default, JavaScript will use the browser's time zone and display a date as a full text string: Fri May 08 2026 02:48:12 GMT-0700 (Pacific Daylight Time) You will learn much more …

  3. Date and time - The Modern JavaScript Tutorial

    Date and time Let’s meet a new built-in object: Date. It stores the date, time and provides methods for date/time management. For instance, we can use it to store creation/modification times, to measure …

  4. 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 …

  5. 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 …

  6. 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 …

  7. How to Work with Dates and Time in JavaScript - Tutorial Reference

    Working with dates and time is one of the most notoriously tricky areas in programming, and JavaScript's Date object has earned a special reputation for its quirks. Months start from zero, time …

  8. JavaScript: Dates and Time - W3docs

    Setting Date and Time Components Modifying the components of a Date object is straightforward with JavaScript's set methods. These methods allow for dynamic adjustments to dates and times, …

  9. JavaScript Date getTime () Method - W3Schools

    Description getTime() returns the number of milliseconds since January 1, 1970 00:00:00.

  10. How to get the Timestamp And Date in Javascript: JS DateTime

    Jun 10, 2025 · Discover efficient JS date manipulation, from handling timestamps to using DateTime, in this essential guide for developers.