Created
November 29, 2022 07:13
-
-
Save crshmk/8fd8777fd57f68e5de3d340062172e56 to your computer and use it in GitHub Desktop.
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 monthLabels = Array(12) | |
.fill() | |
.map((_, i) => new Date(`${i+1}`).toDateString()) | |
.map(date => date.slice(4, 7)) | |
export default monthLabels | |
// ['Jan', 'Feb', 'Mar', ...'Dec'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment