For a project I'm working on I need a five day forecast. I'm starting out with tomorrow (which should be tomorrows date of whenever the user opens the app) and the date is appearing on the screen but it is formatted like this (Fri Jul 24 2020 22:40:10 GMT-0700 (Pacific Daylight Time)). What I would like is a format like this: Fri Jul 24.
Here is my javascript:
const tomorrow = new Date().format(ll)
tomorrow.setDate(new Date().getDate() + 1);
one = document.getElementById('one');
one.innerHTML = tomorrow;