JSFiddle - React, Tailwind, and code Playground
by John Wick
HTML
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.2/moment.min.js"></script>
JavaScript
var date = moment();
/* date.format(moment.ISO_8601); // error */
/* moment.format(date, moment.ISO_8601); // error */
var date = moment(new Date(), moment.ISO_8601, true);
console.log(date);