JSFiddle - React, Tailwind, and code Playground
JavaScript
var today = new Date();
var tomorrow = new Date(Date.now() + 1000 * 3600 * 24);
var result = tomorrow.toLocaleString('en-US', { weekday: 'long', month: 'long', year: 'numeric', day: 'numeric' });
console.log(result) // Friday, January 10 2015