Trying to get tomorrow's date

I have been trying to set a date to be tomorrow’s date but I never get the expected result. I have searched on how to do it and it works on other java script platforms, like w3schools , but when I put it into wix I don’t get a date I just get 1585789320204. Is there a way to get this to work?

function tommorowDateNum(){
let newDate= new Date();
let tommorowsDate = newDate.setDate(newDate.getDate() + 1);
console.log(tommorowsDate);
}

@chewycool This code will return a date/time that is exactly 24 hours from the current date/time:

let today = new Date();
let todayTime = today.getTime();
// 86400000 milliseconds in a day
let tomorrowTime = todayTime + 86400000;
let tomorrow = new  Date(tomorrowTime);
console.log(tomorrow);

@anthonyb

Thanks!