this post was submitted on 30 Jun 2024
155 points (93.3% liked)

Programmer Humor

32495 readers
606 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Meme transcription: Panel 1. Two images of JSON, one is the empty object, one is an object in which the key name maps to the value null. Caption: “Corporate needs you to find the difference between this picture and this picture”

Panel 2. The Java backend dev answers, “They’re the same picture.”

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 26 points 4 months ago (21 children)

I don't get it. The key still gets declared, but it's value is null. "name" in an empty object would return undefined, not null, correct?

(Yes, this joke whooshed, but I am curious now.)

[–] [email protected] 25 points 4 months ago (8 children)

Indeed, and that turns out to be a problem if the JavaScript expects the key not to be there, but instead it is there. And then you try to tell the backend dev that the key shouldn’t be there, but he’ll try to convince you that it’s the same whether the key is not there or whether it’s assigned null and then you wonder if he’s messing with you, but actually he isn’t and then the only thing keeping you sane is bitching about it in meme form on lemmy.

[–] [email protected] 3 points 4 months ago

For many uses it is semantically the same.
But for cases where you need to know if something was intentionally set to null or was simply not set, the difference is enormous.

load more comments (7 replies)
load more comments (19 replies)