constdateOptions={weekday: "long",year: "numeric",month: "long",day: "numeric",};constdate=newDate().toLocaleString("en-US",dateOptions); const date = new Date().toLocaleString("en-US", {
weekday: "long",
year: "numeric",
month: "long",
day: "numeric",
});
would now need to be
Or to use
as const