About 91,000 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

    1 day 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 …

  3. JavaScript Date Objects - GeeksforGeeks

    Jul 11, 2025 · In JavaScript, the Date object is a built-in object that allows you to work with dates and times. It provides a variety of methods to handle dates, compare them, manipulate them, …

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

  5. JavaScript Date Object: Working with Dates - CodeLucky

    Feb 6, 2025 · This comprehensive guide will walk you through the ins and outs of the JavaScript Date object, covering everything from creation and manipulation to formatting and common …

  6. Introduction to JavaScript Date object - sebhastian

    Feb 19, 2021 · JavaScript’s built-in Date object enables you to create and store the date and time. It also provides you with methods to manipulate created date and time objects.

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

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

  9. Understand JavaScript Date Object with Examples (for JavaScript

    Jan 5, 2025 · Go through different ways to display dates using javascript date object. It covers examples of date object usage to understand the main concepts of javascript date object.

  10. JavaScript Date Properties and Methods - Tutorial Republic

    The JavaScript Date object is a global object that is used to work with dates and times. The Date objects are based on a time value that is the number of milliseconds since January 1, 1970 UTC.