JSFiddle - React, Tailwind, and code Playground

by Jeremy Bolanos

JavaScript

function formatDate(userDate) {
	let setDate = new Date(userDate);
    let month = setDate.getMonth() + 1;
    let day = setDate.getDate();
    let year = setDate.getFullYear();
    return `year.month.day`;
}
console.log(formatDate("12/31/2014"));