22 lines
305 B
TypeScript
22 lines
305 B
TypeScript
|
/**
|
||
|
* A dictionary for all of the months of the year
|
||
|
*/
|
||
|
const monthDictionary: Array<string> = [
|
||
|
"January",
|
||
|
"February",
|
||
|
"March",
|
||
|
"April",
|
||
|
"May",
|
||
|
"June",
|
||
|
"July",
|
||
|
"August",
|
||
|
"September",
|
||
|
"October",
|
||
|
"November",
|
||
|
"December"
|
||
|
];
|
||
|
|
||
|
|
||
|
export {
|
||
|
monthDictionary
|
||
|
};
|