JPDev@programming.dev to Programmer Humor@programming.dev · 9 months ago===programming.devimagemessage-square76fedilinkarrow-up1692arrow-down117
arrow-up1675arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 9 months agomessage-square76fedilink
minus-squareJaddedFauceet@lemmy.worldlinkfedilinkarrow-up1·9 months 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()];