0
Q:

get time from date javascript

var currentDateAndTime=new Date().toLocaleString(); //"8/5/2019, 2:30:41 PM"
var currentDate=new Date().toLocaleDateString(); //"8/5/2019"
var currentTime=   new Date().toLocaleTimeString();//"2:31:56 PM"
4
function WithoutTime(dateTime) {
    var date = new Date(dateTime.getTime());
    date.setHours(0, 0, 0, 0);
    return date;
}
2
var d= new Date();
d.getFullYear();	//Get the year as a four digit number (yyyy)
d.getMonth();	//Get the month as a number (0-11)
d.getDate();	//Get the day as a number (1-31)
d.getHours();	//Get the hour (0-23)
d.getMinutes();	//Get the minute (0-59)
d.getSeconds();	 //Get the second (0-59)
d.getMilliseconds()	//Get the millisecond (0-999)
d.getTime();	//Get the time (milliseconds since January 1, 1970)
d.getDay();  //Get the weekday as a number (0-6)
d.Date.now();	//Get the time. ECMAScript 5.
d.setDate()	//Set the day as a number (1-31)
d.setFullYear()	//Set the year (optionally month and day)
d.setHours()	//Set the hour (0-23)
d.setMilliseconds()	//Set the milliseconds (0-999)
d.setMinutes()	//Set the minutes (0-59)
d.setMonth()	//Set the month (0-11)
d.setSeconds()	//Set the seconds (0-59)
d.setTime()	//Set the time (milliseconds since January 1, 1970)
22
const handleTime = (dataD) => {
    let data= new Date(dataD)
    let hrs = data.getHours()
    let mins = data.getMinutes()
    if(hrs<=9)
       hrs = '0' + hrs
    if(mins<10)
      mins = '0' + mins
    const postTime= hrs + ':' + mins
    return postTime
  }
2
var currentDate = new Date();
var dateFromTimeStamp= new Date(1560807962);
var dateFromString = new Date('December 17, 1995 03:24:00');
//new Date(year, month, day, hours, minutes, seconds, milliseconds)
//0= Jan, 11=Dec
var dateFromYearMonthDay = new Date(2018, 11, 26, 0, 0, 0, 0);
18
var d= new Date();
d.getFullYear();//Get the year as a four digit number (yyyy)
d.getMonth();//Get the month as a number (0-11)
d.getDate();//Get the day as a number (1-31)
d.getHours();//Get the hour (0-23)
d.getMinutes();//Get the minute (0-59)
d.getSeconds();//Get the second (0-59)
d.getMilliseconds();//Get the millisecond (0-999)
d.getTime();//Get the time (milliseconds since January 1, 1970)
21
var d=new Date();
d.getTime();//I'm in milliseconds, divide by 1000 for seconds
2

New to Communities?

Join the community