JSFiddle - React, Tailwind, and code Playground

by Zacc206

JavaScript

const value = '2014-10-08T07:00:00.000Z';

const date = new Date(value);

/* console.log(date); */

const formattedDate = `${date.getMonth() + 1}/${date.getDate()}/${date.getFullYear()}`;

console.log(formattedDate);