Answers for "javascript how to only get the date and time"

0

js display only date

var newDate = new Date(oldDate.toDateString());
Posted by: Guest on August-06-2021
3

get time from date javascript

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
  }
Posted by: Guest on August-08-2020

Code answers related to "javascript how to only get the date and time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language