xxxxxxxxxx
const currentDate = new Date();
const now = currentDate.getTime();
console.log(now); // Prints the current timestamp in milliseconds
xxxxxxxxxx
var d = Date(Date.now());
a = d.toString()
// Printing the current date
document.write("The current date is: " + a)
// The current date is: Fri Jun 22 2018 10:54:33
xxxxxxxxxx
var d= new Date();
d.getFullYear();//Get the year as a four digit number (yyyy)
d.getMonth();//Get the month as a number (0-11)
d.getDate();//Get the day as a number (1-31)
d.getHours();//Get the hour (0-23)
d.getMinutes();//Get the minute (0-59)
d.getSeconds();//Get the second (0-59)
d.getMilliseconds();//Get the millisecond (0-999)
d.getTime();//Get the time (milliseconds since January 1, 1970)
xxxxxxxxxx
let date = Date.now()
consol.log(date) /*Returns the number of milliseconds elapsed
since the midnight at the beginning of January 1, 1970
UTC (The epoch).*/
xxxxxxxxxx
const t = new Date();
const date = ('0' + t.getDate()).slice(-2);
const month = ('0' + (t.getMonth() + 1)).slice(-2);
const year = t.getFullYear();
const time = `${date}/${month}/${year}`;
console.log(time);
xxxxxxxxxx
let currentDate = new Date().toJSON().slice(0, 10);
console.log(currentDate); // "2022-06-17"
xxxxxxxxxx
var today = new Date();
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);
Run code snippetHide results