JPDev@programming.dev to Programmer Humor@programming.dev · 1 year ago===programming.devimagemessage-square70fedilinkarrow-up1672
arrow-up1672image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 1 year agomessage-square70fedilink
minus-squareJaddedFauceet@lemmy.worldlinkfedilinkarrow-up1·1 year 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()];