JavaScript Date getTime() Method Last Updated : 12 Jul, 2024 Comments Improve Suggest changes Like Article Like Report JavaScript Date getTime() Method is used to return the number of milliseconds since 1 January 1970. When a new Date object is created it stores the date and time data when it is created. The getTime() always uses UTC for time representation.Syntax:Date.getTime();Parameters:This method does not accept any parameter.Return type:A numeric value equal to no of milliseconds since Unix Epoch.Example 1: Get time in millisecondsThis code demonstrates how to get the time in milliseconds from a Date object. It creates a Date object representing October 15, 1996, at 05:35:32. Then, it calls the getTime() method on the Date object to retrieve the time in milliseconds since January 1, 1970 (UNIX epoch). Finally, it logs the result to the console. JavaScript // Here a date has been assigned // While creating Date object let A = new Date('October 15, 1996 05:35:32'); // Hour from above is being // extracted using getTime() let B = A.getTime(); // Printing time in milliseconds. console.log(B) Output845357732000 Example 2: creating a Date object with an invalid date stringThe code attempts to create a Date object with an invalid date string ("October 35, 1996 12:35:32"). Since the date string is invalid (October doesn't have 35 days), the Date object creation will result in an invalid date. Consequently, getTime() will return NaN (Not-a-Number), which will be logged to the console. JavaScript // Creating a Date object let A = new Date('October 35, 1996 12:35:32'); let B = A.getTime(); // Printing hour. console.log(B); OutputNaN Example 3: Calculating user ageThe code calculates the age in years by subtracting the birth date (July 29, 1997) from the current date, both converted to milliseconds since the Unix epoch, and then dividing by the number of milliseconds in a year. Finally, it rounds the result using Math.round() and logs the age to the console. JavaScript let BD = new Date("July 29, 1997 23:15:20"); let Today = new Date(); let today = Today.getTime(); let bd = BD.getTime(); let year = 1000 * 60 * 60 * 24 * 365; let years = (today - bd) / year; console.log(Math.round(years)); Output27 Supported Browsers:Google ChromeMicrosoft Edge Mozilla FirefoxOpera Safari Comment More infoAdvertise with us Next Article JavaScript Date getTime() Method P Pankaj_Singh Follow Improve Article Tags : JavaScript Web Technologies javascript-date JavaScript-Methods Similar Reads JavaScript Date() Constructor JavaScript Date constructor is used to create a new Date object. The value returned will be different on the basis of whether the object is called with or without the new keyword. If we call the object new keyword a Date object is created otherwise a string representing the current dat-time is retur 3 min read JavaScript Date constructor Property JavaScript Date constructor property returns the constructor function for an object. It is an ES1 feature and is supported by all browsers. The function which is returned by this property is just the reference to this function, not a date containing the functionâs name. The JavaScript date construct 2 min read JavaScript Date now() Method The Date.now() method in JavaScript returns the current timestamp in milliseconds since January 1, 1970. This method doesnât require creating a new date object, making it one of the fastest and most efficient ways to capture the current time in your code.Syntaxlet curr_date = Date.now();ParametersTh 2 min read JavaScript Date parse() Method The JavaScript Date parse() method parses a date string and returns the number of milliseconds between the date string and midnight of January 1, 1970, UTC. If the argument is an invalid date string, it returns NaN (Not a Number).Syntax:Date.parse(datestring);Parameters:This method accepts a single 3 min read JavaScript Date UTC() Method In JavaScript, the Date.UTC() method is used to create a date object representing a specified date and time in UTC (Coordinated Universal Time). It accepts the year, month, day, hour, minute, second, and millisecond components of the date and returns the number of milliseconds since January 1, 1970, 4 min read JavaScript Date getDate() Method The JavaScript getDate() method returns the day of the month (from 1 to 31) for a specified date according to local time. It's used with the Date object to extract and work with the day component of a date.Syntax:DateObj.getDate()Parameters:This method does not take any parameters.Return Value:Retur 4 min read JavaScript Date getDay() Method JavaScript Date getDay() Method is used to fetch the day of a week(0 to 6) from a given Date object.Syntax:DateObj.getDay()Parameters:This method does not accept any parameters.Return Values:It returns the day of the week for the given date. The day of the week will be returned in the form of an int 3 min read JavaScript Date getFullYear() Method The JavaScript Date getFullYear() Method is used to fetch the year from a given Date object.Syntax:DateObj.getFullYear()Parameters:This function does not accept any parameters.Return Values:It returns the year for the given date.Example 1: This example shows the use of Date getFullYear() Method.java 3 min read JavaScript Date getHours() Method The Javascript date.getHours() method is used to return the hours from a given Date object according to the local time (a value ranging from 0 to 23).Syntax:DateObject.getHours()Parameters:This method does not accept any parameter. Return values: It returns the Hours for the given Date object. Hours 3 min read JavaScript Date getMilliseconds() Method The date.getMilliseconds() method is used to fetch the milliseconds from a given Date object. Syntax: DateObj.getMilliseconds() Parameter: This function does not accept any parameter. Return values: It returns the millisecond for the given date object. Milliseconds is an integer value ranging from 0 3 min read Like