Last active
March 21, 2016 22:07
-
-
Save popovichN/ab400e50897740c257bc to your computer and use it in GitHub Desktop.
months lookup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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