this post was submitted on 20 Dec 2024
969 points (97.0% liked)

Programmer Humor

32727 readers
189 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] masterspace@lemmy.ca 2 points 5 days ago* (last edited 5 days ago) (1 children)

I think that might be user error as I can't recreate that:

[–] pooberbee@lemmy.ml 1 points 5 days ago (1 children)

Yeah, you would get a runtime error calling that member without checking that it exists.

[–] masterspace@lemmy.ca 1 points 3 days ago* (last edited 1 day ago)

Because that object is of a type where that member may or may not exist. That is literally the exact same behaviour as Java or C#.

If I cast or type check it to make sure it's of type Bar rather than checking for the member explicitly it still works:

And when I cast it to Foo it throws a compile time error, not a runtime error:

I think your issues may just like in the semantics of how Type checking works in JavaScript / Typescript.