xxxxxxxxxx
// Getting the current date
const currentDate = new Date();
// Formatting the date to dd/mm/yyyy format
const formattedDate = `${currentDate.getDate()}/${currentDate.getMonth() + 1}/${currentDate.getFullYear()}`;
console.log(formattedDate);
xxxxxxxxxx
const date = new Date().toLocaleDateString()
console.log(date)
/*
Output : "5/17/2022"
*/
xxxxxxxxxx
var todayDate = new Date().toISOString()
console.log(todayDate);
xxxxxxxxxx
const dateString = "2020-10-30T12:52:27+05:30"; // ISO8601 compliant dateString
const D = new Date(dateString);
const result = D.getDate()+"/"+(D.getMonth()+1)+"/"+D.getFullYear();
//output: 30/10/2020
xxxxxxxxxx
Copied!
const date = new Date();
// ✅ DD/MM/YYYY
const result1 = new Date().toLocaleDateString('en-GB');
console.log(result1); // 👉️ 24/02/2023
xxxxxxxxxx
const date = new Date();
const formattedDate = date.toISOString().slice(0, 10);
console.log(formattedDate);
// Output: 2023-05-07
xxxxxxxxxx
function pad2(n) {
return (n < 10 ? '0' : '') + n;
}
var date = new Date();
var month = pad2(date.getMonth()+1);//months (0-11)
var day = pad2(date.getDate());//day (1-31)
var year= date.getFullYear();
var formattedDate = month+"/"+day+"/"+year;
alert(formattedDate); //03/02/2021
xxxxxxxxxx
function pad2(n) {
return (n < 10 ? '0' : '') + n;
}
var date = new Date();
var month = pad2(date.getMonth()+1);//months (0-11)
var day = pad2(date.getDate());//day (1-31)
var year= date.getFullYear();
var formattedDate = day+"-"+month+"-"+year;
alert(formattedDate); //28-02-2021