JSFiddle - React, Tailwind, and code Playground
by Scott Kaye
JavaScript
var strDate = "1932-10-13T00:00:00-04:00";
var year = strDate.substr(0, 4);
var month = +strDate.substr(5, 2) - 1;
var day = strDate.substr(8, 2);
var date = new Date(year, month, day);
console.log(date.toISOString());
console.log(date.toLocaleString());