Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Shivabeach/3966545 to your computer and use it in GitHub Desktop.

Select an option

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'
];
@shinhonggyu
Copy link
Copy Markdown

thanks

@erichbuelow
Copy link
Copy Markdown

Thank you sir!

@Hussein-miracle
Copy link
Copy Markdown

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
Copy Markdown

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