ElCanut@jlai.lu to Programmer Humor@programming.dev · 12 hours agoAsking the real questionsjlai.luimagemessage-square126fedilinkarrow-up1727arrow-down14
arrow-up1723arrow-down1imageAsking the real questionsjlai.luElCanut@jlai.lu to Programmer Humor@programming.dev · 12 hours agomessage-square126fedilink
minus-squareKubeRoot@discuss.tchncs.delinkfedilinkEnglisharrow-up12·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-up10·4 hours ago"John Doe" vs ["John", "Doe"] vs {"firstName":"John", "lastName":"Doe"}
minus-squareLemminary@lemmy.worldlinkfedilinkarrow-up3·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"}