How to get the current date from JavaScript

Asked 1 years ago, Updated 1 years ago, 144 views

How do I get the current date from JavaScript?

javascript date

2022-09-22 22:09

1 Answers

var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();

if(dd<10) {
    dd='0'+dd
} 

if(mm<10) {
    mm='0'+mm
} 

today = mm+'/'+dd+'/'+yyyy;
document.write(today);

I received the date and printed it out in the format of 0000000000 years. I think you can use it with modifications.


2022-09-22 22:09

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.