How do you format Today's Date?

Thanks so much! I ended up using this instead:

function () {
const today = new Date();
const options = {
weekday: “long”,
day: “numeric”,
month: “long”,
year: “numeric”
};
$w(“#text3”).text = today.toLocaleDateString(‘en-US’, options);
});