Moment JS

Example of parsing and formatting a Date with Moment JS.

by Korah Babu Varghese

HTML

<script src="http://momentjs.com/downloads/moment.js"></script>

JavaScript

// Moment JS - Formatting Guide: http://momentjs.com/docs/#/parsing/string-format/
document.write(moment('2014-08-20').format('MM/DD/YYYY'));