Format JavaScript Datum mit Datum.js Bibliothek

const dayjs = require('dayjs');

let now = dayjs();

console.log(now.format());
Gentle Gerbil