Skip to content

Instantly share code, notes, and snippets.

@popovichN
Last active March 21, 2016 22:07
Show Gist options
  • Select an option

  • Save popovichN/ab400e50897740c257bc to your computer and use it in GitHub Desktop.

Select an option

Save popovichN/ab400e50897740c257bc to your computer and use it in GitHub Desktop.
months lookup
const months = {
0: { 'month': 'January', 'abbrev': 'Jan'},
1: { 'month': 'February', 'abbrev': 'Feb'},
2: { 'month': 'March', 'abbrev': 'Mar'},
3: { 'month': 'April', 'abbrev': 'Apr'},
4: { 'month': 'May', 'abbrev': 'May'},
5: { 'month': 'June', 'abbrev': 'Jun'},
6: { 'month': 'July', 'abbrev': 'Jul'},
7: { 'month': 'August', 'abbrev': 'Aug'},
8: { 'month': 'September', 'abbrev': 'Sep'},
9: { 'month': 'October', 'abbrev': 'Oct'},
10: { 'month': 'November', 'abbrev': 'Nov'},
11: { 'month': 'December', 'abbrev': 'Dec'}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment