JPDev@programming.dev to Programmer Humor@programming.dev · 2 years ago===programming.devimagemessage-square76linkfedilinkarrow-up1695arrow-down117
arrow-up1678arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 2 years agomessage-square76linkfedilink
minus-squareJaddedFauceet@lemmy.worldlinkfedilinkarrow-up1·2 years agoLooks confusing at first, but I found it nice for accessing a month array. const months = ["Jan", "Feb", ...]; months[0] === "Jan"; const label = months[date.getMonth()];
Looks confusing at first, but I found it nice for accessing a month array.
const months = ["Jan", "Feb", ...]; months[0] === "Jan"; const label = months[date.getMonth()];