Use new Date()Generate a new Date object containing the current date and time.
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);
If you want to reuse a
utc
variable (e.g.new Date(utc)
), use thereplace
option, as Firefox and Safari do not recognize dashes date.Use
new Date()
Generate a newDate
object containing the current date and time.