var today =newDate();
var dd =String(today.getDate()).padStart(2, '0');
var mm =String(today.getMonth() +1).padStart(2, '0'); //January is 0!var yyyy = today.getFullYear();
today = mm +'/'+ dd +'/'+ yyyy;
document.write(today);
java script print date in YYYY-MM-DD HH:MM:SS format
let date_ob =newDate();
// adjust 0 before single digit date
let date = ("0"+ date_ob.getDate()).slice(-2);
// current month
let month = ("0"+ (date_ob.getMonth() +1)).slice(-2);
// current year
let year = date_ob.getFullYear();
// current hours
let hours = date_ob.getHours();
// current minutes
let minutes = date_ob.getMinutes();
// current seconds
let seconds = date_ob.getSeconds();
// prints date & time in YYYY-MM-DD HH:MM:SS format
console.log(year +"-"+ month +"-"+ date +" "+ hours +":"+ minutes +":"+ seconds);
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
Check Your Email and Click on the link sent to your email