JSFiddle - React, Tailwind, and code Playground

by timrwood

HTML

<script src="https://raw.github.com/timrwood/moment/1.7.0/min/moment.min.js"></script>

JavaScript

function log(msg) {
    $('body').append('<p>' + msg + '</p>');
}

var input = '2012-09-03T03:00PM',
    format = 'YYYY-MM-DDThh:mmA';

log(moment(input, format).format(format));