Dayjs playground

Dayjs playground

by Csaba Hellinger

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.10/dayjs.min.js"></script>
<p>Check the output on the console.</p>

JavaScript

const now = dayjs();

const test = (format) => {
  console.log(format, '=', now.format(format));
}

test('ddd, MMM D');
test('h:mm a');

test('%H:%M');
test('%Y');



console.log(dayjs('1703980800000').toDate());