JPDev@programming.dev to Programmer Humor@programming.dev · 10 months ago===programming.devimagemessage-square70fedilinkarrow-up1677arrow-down117
arrow-up1660arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 10 months agomessage-square70fedilink
minus-squareJaddedFauceet@lemmy.worldlinkfedilinkarrow-up1·10 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()];