.
Size: a a a
М
AS
JM
OS
JM
Now ${year} month ${month} and ${day} day of month
);OS
Now ${year} month ${month} and ${day} day of month
);I
Now ${year} month ${month} and ${day} day of month
);JM
Е
JM
Е
JM
М
let yMd = {
year: new Date().getFullYear(),
month: new Date().getMonth(),
day: new Date().getDay()
}
console.log(`It's ${yMd.year} and ${yMd.month} and ${yMd.day} of month`)
Е
JM
Е
JM
let yMd = {
year: new Date().getFullYear(),
month: new Date().getMonth(),
day: new Date().getDay()
}
console.log(`It's ${yMd.year} and ${yMd.month} and ${yMd.day} of month`)
AS
I