_
Size: a a a
_
В
Ф
let now = new Date();
let year = now.getFullYear();
let month = now.getMonth();
let day = now.getDate()
let app = document.getElementById('app').textContent = year + '-' + month + '-' + day;
console.log(app);
J
"YYYY-mm-dd" ==> 2021-06-21
AU
J
И
И
Ф
let app = document.getElementById('app').textContent =(`Date now ${year} - ${month} - ${day}`);
И
let now = new Date();
let year = now.getFullYear();
let month = now.getMonth();
let day = now.getDate()
VD
J
И
J
Ф
Ф
MR
AE
BB
j