ElCanut@jlai.lu to Programmer Humor@programming.dev · 12 hours agoAsking the real questionsjlai.luimagemessage-square122fedilinkarrow-up1716arrow-down14
arrow-up1712arrow-down1imageAsking the real questionsjlai.luElCanut@jlai.lu to Programmer Humor@programming.dev · 12 hours agomessage-square122fedilink
minus-squareKubeRoot@discuss.tchncs.delinkfedilinkEnglisharrow-up11·4 hours agoAh, but you see, “John” and “Doe” are two names - first and last - and when you say “My name is”, you’re really listing out your names, with spaces inbetween! But then there’s hyphenated names, and I have no idea how those are treated.
minus-squaredch82@lemmy.ziplinkfedilinkarrow-up9·3 hours ago"John Doe" vs ["John", "Doe"] vs {"firstName":"John", "lastName":"Doe"}
minus-squareLemminary@lemmy.worldlinkfedilinkarrow-up2·edit-23 hours agoconsole.log(Object.values(name).join("\n"));
Ah, but you see, “John” and “Doe” are two names - first and last - and when you say “My name is”, you’re really listing out your names, with spaces inbetween!
But then there’s hyphenated names, and I have no idea how those are treated.
"John Doe"
vs["John", "Doe"]
vs{"firstName":"John", "lastName":"Doe"}