Public
Script
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// "Day Month Year" version of the current date, where Month is the written word.
export function today() {
let today = new Date();
let day = String(today.getDate()).padStart(2, "0");
let months = [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
];
let month = months[today.getMonth()];
let year = today.getFullYear();
return `${day} ${month} ${year}`;
}
October 23, 2023