Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Shivabeach/3966545 to your computer and use it in GitHub Desktop.
Save Shivabeach/3966545 to your computer and use it in GitHub Desktop.
A Months array
$months = [
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December'
];
@AIWintermuteAI
Copy link

superb

@shinhonggyu
Copy link

thanks

@erichbuelow
Copy link

Thank you sir!

@Hussein-miracle
Copy link

In javascript for fast access
const months = {
"01": "Jan",
"02": "Feb",
"03": "Mar",
"04": "Apr",
"05": "May",
"06": "Jun",
"07": "Jul",
"08": "Aug",
"09": "Sep",
// eslint-disable-next-line prettier/prettier
"10": "Oct",
// eslint-disable-next-line prettier/prettier
"11": "Nov",
// eslint-disable-next-line prettier/prettier
"12": "Dec",
};

@woterr
Copy link

woterr commented Oct 25, 2022

this man must be protected

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment