About 16,100 results
Open links in new tab
  1. 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.

  2. Date - JavaScript | MDN - MDN Web Docs

    There are two groups of Date methods: one group gets and sets various date components by interpreting the timestamp as a local time, while the other uses UTC. ... The Date() constructor …

  3. Date and time - The Modern JavaScript Tutorial

    Oct 14, 2022 · These two do exactly the same thing, but one of them uses an explicit date.getTime() to get the date in ms, and the other one relies on a date-to-number transform.

  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 …

  5. JavaScript Date and Time Functions - Quackit Tutorials

    JavaScript Date and Time Functions - full listing of all JavaScript functions for dealing with date and time.

  6. JavaScript Date cheatsheet - Devhints.io cheatsheets

    The one-page guide to JavaScript Date: usage, examples, links, snippets, and more.

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

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

  9. Date () constructor - JavaScript | MDN

    Dec 17, 1995 · The Date() constructor creates Date objects. When called as a function, it returns a string representing the current time.

  10. JavaScript Date and Time - Programiz

    In this tutorial, you will learn about date and time in JavaScript with the help of examples.