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

    The JavaScript specification only specifies one format to be universally supported: the date time string format, a simplification of the ISO 8601 calendar date extended format.

  2. JavaScript Date Reference - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  3. Date and time - The Modern JavaScript Tutorial

    Oct 14, 2022 · 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 time, or just to print out the current date.

  4. JavaScript Date Objects - W3Schools

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

  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. JavaScript Dates - W3Schools

    2 days ago · JavaScript Date Output By default, JavaScript will use the browser's time zone and display a date as a full text string: Tue Feb 24 2026 04:16:36 GMT-0800 (Pacific Standard Time) You will …

  7. Date.now () - JavaScript | MDN - MDN Web Docs

    Jul 10, 2025 · You can use Date.now() to get the current time in milliseconds, then subtract a previous time to find out how much time elapsed between the two calls. For more complex scenarios, you may …

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

  9. JavaScript: Dates and Time - W3docs

    In the realm of web development, understanding and manipulating dates and times is crucial for creating dynamic and user-centric applications. JavaScript, being a cornerstone of web development, offers a …

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