JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.6.0/moment-with-langs.min.js"></script>
<div id="a"></div>
<div id="b"></div>
<div id="c"></div>
<div id="d"></div>
<div id="e"></div>
<div id="f"></div>
<div id="g"></div>
<div id="h"></div>    
<div id="i"></div>    
<div id="j"></div>
<div id="l"></div> 
<div id="m"></div>
<div id="n"></div>

JavaScript

moment.lang("pt-br");
//FORMATAÇÃO
var a = moment('13/07/2014', 'DD/MM/YYYY').format('L');                // 13/07/2014
var b = moment('13/07/2014', 'DD/MM/YYYY').format('l');                // 13/7/2014
var c = moment('13/07/2014', 'DD/MM/YYYY').format('LL');               // 13 de julho de 2014
var d = moment('13/07/2014', 'DD/MM/YYYY').format('ll');               // 13 de jul de 2014
var e = moment('13/07/2014 14:57','DD/MM/YYYY HH:mm').format('LLL');   // 13 de julho de 2014 às 14:57
var f = moment('13/07/2014 14:57', 'DD/MM/YYYY HH:mm').format('lll');  // 13 de jul de 2014 às 14:57
var g = moment('13/07/2014 14:57', 'DD/MM/YYYY HH:mm').format('LLLL'); // domingo, 13 de julho de 2014 às 14:57
var h = moment('13/07/2014 14:57', 'DD/MM/YYYY HH:mm').format('llll'); // dom, 13 de jul de 2014 às 14:57
var i = moment('23:00', 'HH:mm').format('HH:mm:ss'); // dom, 13 de jul de 2014 às 14:57
//VALIDAÇÃO
var j = moment("24:00", 'HH:mm').fromNow(); //false           
var l = moment("23:00", 'HH:mm').isValid(); //true
var m = moment("29/02/2014", 'DD/MM/YYYY').isValid(); //false
var n = moment("29/02/2012", 'DD/MM/YYYY').isValid(); //true           
//MOSTRA OS RESULTADOS
$("#a").html(a);
$("#b").html(b);
$("#c").html(c);
$("#d").html(d);
$("#e").html(e);
$("#f").html(f);
$("#g").html(g);
$("#h").html(h);
$("#i").html(i);
$("#j").html(j);
$("#l").html(l == false ? "23:00: false" : "23:00: true");
$("#m").html(m == false ? "29/02/2014: false" : "29/02/2014: true");
$("#n").html(n == false ? "29/02/2012: false" : "29/02/2012: true");