Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

date methods js

new Date().toISOString()
'2022-10-11T16:22:51.161Z'
new Date().toJSON()
'2022-10-11T16:22:51.161Z'

new Date().toDateString()
'Tue Oct 11 2022'
new Date().toGMTString()
'Tue, 11 Oct 2022 16:22:51 GMT'
new Date().toUTCString()
'Tue, 11 Oct 2022 16:22:51 GMT'

new Date().toTimeString()
'21:52:51 GMT+0530 (India Standard Time)'
new Date().toString()
'Tue Oct 11 2022 21:52:51 GMT+0530 (India Standard Time)'

new Date().toLocaleDateString()
'11/10/2022'
new Date().toLocaleTimeString()
'21:52:51'
new Date().toLocaleString()
'11/10/2022, 21:52:51'
Comment

javascript date methods

Date(): Returns today's date and time
getDate(): Returns the day of the month for the specified date according to the local time
getDay(): Returns the day of the week for the specified date according to the local time
getFullYear(): Returns the year of the specified date according to the local time
getHours(): Returns the hour in the specified date according to the local time
getMilliseconds(): Returns the milliseconds in the specified date according to the local time
getMinutes(): Returns the minutes in the specified date according to the local time
getMonth(): Returns the month in the specified date according to the local time
getSeconds(): Returns the seconds in the specified date according to the local time
getTime(): Returns the numeric value of the specified date as the number of milliseconds since January 1, 1970, 00:00:00 UTC
getTimezoneOffset(): Returns the time-zone offset in minutes for the current locale
getUTCDate(): Returns the day (date) of the month in the specified date according to the universal time
getUTCDay(): Returns the day of the week in the specified date according to the universal time
getUTCFullYear(): Returns the year in the specified date according to the universal time
getUTCHours(): Returns the hours in the specified date according to the universal time
getUTCMilliseconds(): Returns the milliseconds in the specified date according to the universal time
getUTCMinutes(): Returns the minutes in the specified date according to the universal time
getUTCMonth(): Returns the month in the specified date according to the universal time
getUTCSeconds(): Returns the seconds in the specified date according to the universal time
setDate(): Sets the day of the month for a specified date according to the local time
setFullYear(): Sets the full year for a specified date according to the local time
setHours(): Sets the hours for a specified date according to the local timesetMilliseconds()
Comment

JavaScript Date Methods

JavaScript Date Methods
There are various methods available in JavaScript Date object.

Method	Description
now()	Returns the numeric value corresponding to the current time (the number of milliseconds elapsed since January 1, 1970 00:00:00 UTC)
getFullYear()	Gets the year according to local time
getMonth()	Gets the month, from 0 to 11 according to local time
getDate()	Gets the day of the month (1–31) according to local time
getDay()	Gets the day of the week (0-6) according to local time
getHours()	Gets the hour from 0 to 23 according to local time
getMinutes	Gets the minute from 0 to 59 according to local time
getUTCDate()	Gets the day of the month (1–31) according to universal time
setFullYear()	Sets the full year according to local time
setMonth()	Sets the month according to local time
setDate()	Sets the day of the month according to local time
setUTCDate()	Sets the day of the month according to universal time
Comment

Date Methods javascript

const timeInMilliseconds = Date.now();
console.log(timeInMilliseconds); // 1593765214488
const time = new Date;
// get day of the month
const date = time.getDate();
console.log(date); // 30
// get day of the week
const year = time.getFullYear();
console.log(year); // 2020
const utcDate = time.getUTCDate();
console.log(utcDate); // 30
const event = new Date('Feb 19, 2020 23:15:30');
// set the date
event.setDate(15);
console.log(event.getDate()); // 15
// Only 28 days in February!
event.setDate(35);

console.log(event.getDate()); // 7
Comment

PREVIOUS NEXT
Code Example
Javascript :: search inside a string javascript 
Javascript :: how to include in ejs 
Javascript :: javascript detect when number of elements change 
Javascript :: convert date online in moment js 
Javascript :: javascript autoscroll 
Javascript :: how to delete an object from array in reactjs 
Javascript :: Unable to locate package node 
Javascript :: sh: 1: react-scripts: not found 
Javascript :: inline confirm box javascript 
Javascript :: mocha should throw error 
Javascript :: react native text input select all text on focus 
Javascript :: js add more text to element 
Javascript :: javascript quicksort 
Javascript :: how to find lcm in javascript 
Javascript :: gulp sequential tasks 
Javascript :: javascript syntax for check null or undefined or empty 
Javascript :: discordjs eval 
Javascript :: jquery scrollheight 
Javascript :: js toggle class 
Javascript :: statusbar height react native 
Javascript :: javascript check if argument is passed 
Javascript :: rounding to nearest hundredth js 
Javascript :: how to change css style on click 
Javascript :: javascript array delete by index 
Javascript :: express.static 
Javascript :: Factorial multiplication in javascript 
Javascript :: django jquery 
Javascript :: find whitespace in string js 
Javascript :: javascript minimum number in array 
Javascript :: alphabet only in jquery 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =