JSFiddle - React, Tailwind, and code Playground

HTML

<div class="date">

</div>
<div class="date">

</div>
<div class="date">

</div>

JavaScript

var current = 5;
var create = function(){
    return new Date(2015, 4, current);
}
var monthNames = ["January", "February", "March", "April", "May", "June",
  "July", "August", "September", "October", "November", "December"];

$(".date").each(function(){
    init = create();
    $(this).text(""+ monthNames[init.getMonth() - 1] + ", " +           init.getDate());
    current++;
})