dateTime to date in js
let dateStr =new Date("Wed Aug 05 18:11:48 UTC 2020")
dateStr.toLocaleDateString()
// "05/08/2020"
dateStr.toTimeString()
// "23:41:48 GMT+0530 (India Standard Time)"
dateTime to date in js
let dateStr =new Date("Wed Aug 05 18:11:48 UTC 2020")
dateStr.toLocaleDateString()
// "05/08/2020"
dateStr.toTimeString()
// "23:41:48 GMT+0530 (India Standard Time)"
convert javascritp getTime() to datetime
var time = new Date().getTime(); // get your number
var date = new Date(time); // create Date object
console.log(date.toString()); // result: Wed Jan 12 2011 12:42:46 GMT-0800 (PST)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us