Write program to convert Date object to string
let d = new Date();
console.log( d );
//your code here
Use the toDateString() method to convert the date to a more readable format.
let d = new Date(); console.log( d ); console.log( d.toDateString());