Current date

PHOTO EMBED

Fri Apr 21 2023 08:54:13 GMT+0000 (Coordinated Universal Time)

Saved by @Bartcw89 #javascript

function currentDate() {
    const date = new Date();
    const year = date.getFullYear();
    const month = date.getMonth() + 1;
    const day = date.getDate();
    const format = n => n < 10 ? '0' + n : n;
    return year + '-' + format(month) + '-' + format(day);
}
content_copyCOPY