JSFiddle - React, Tailwind, and code Playground
HTML
<div id="konsole">
</div>
JavaScript
var ts = '2016-01-07T19:36:27.360Z';
var getBillingMonth = function(s) {
var tz = new Date().getTimezoneOffset() * 60000;
var cd = new Date(s.replace('T', ' ').replace('Z', ''));
var ld = new Date(cd - tz);
return ld.toString().substr(4, 17);
};
var konsole = document.getElementById('konsole');
konsole.innerHTML = getBillingMonth(ts);