siriusmart@lemmy.ml to Programmer Humor@lemmy.ml · 7 months agothe hardest exam questionlemmy.mlimagemessage-square145fedilinkarrow-up1740arrow-down123
arrow-up1717arrow-down1imagethe hardest exam questionlemmy.mlsiriusmart@lemmy.ml to Programmer Humor@lemmy.ml · 7 months agomessage-square145fedilink
minus-squarekamen@lemmy.worldlinkfedilinkarrow-up5·6 months agoWeren’t you getting runtime errors for the function not being found?
minus-squarehumbletightband@lemmy.dbzer0.comlinkfedilinkarrow-up7·6 months agoNo, they were probably getting false every time
minus-squareshastaxc@lemm.eelinkfedilinkarrow-up2arrow-down1·edit-26 months agoFalsy* because it was undefined However, their IDE should have highlighted it as an unknown property. Guess this guy is coding in notepad or vi.
minus-squarehumbletightband@lemmy.dbzer0.comlinkfedilinkarrow-up2·6 months agoYep, thanks for correcting me. In fact, if they write something like if (day.isWeekend) {...} The block will never be executed with the old version of library
minus-squareshastaxc@lemm.eelinkfedilinkarrow-up2·6 months agoYeah that’s exactly what I think happened to him. He needs a better IDE and/or needs to stop copy/pasting code from stackoverflow or documentation that doesn’t match his library version.
minus-squareByteJunk@lemmy.worldlinkfedilinkarrow-up1arrow-down1·6 months agoMy dude, you need to understand that all that anger and resentment, it is not you. It’s the years of JavaScript poisoning your mind. In any case, that goes to my point. I would have to be saved by my IDE, when any sane language will blow up in your face as soon as you try to run it.
minus-squareowsei@programming.devlinkfedilinkarrow-up2·6 months agoI don’t know how luxon works, but isWeekend could be a property instead of a function
minus-squareByteJunk@lemmy.worldlinkfedilinkarrow-up2·6 months agoIt is. It also happens to be undefined, and checking that for truth is how I was bitten.
Weren’t you getting runtime errors for the function not being found?
No, they were probably getting false every time
Falsy* because it was undefined
However, their IDE should have highlighted it as an unknown property. Guess this guy is coding in notepad or vi.
Yep, thanks for correcting me. In fact, if they write something like
The block will never be executed with the old version of library
Yeah that’s exactly what I think happened to him. He needs a better IDE and/or needs to stop copy/pasting code from stackoverflow or documentation that doesn’t match his library version.
My dude, you need to understand that all that anger and resentment, it is not you. It’s the years of JavaScript poisoning your mind.
In any case, that goes to my point. I would have to be saved by my IDE, when any sane language will blow up in your face as soon as you try to run it.
I don’t know how luxon works, but isWeekend could be a property instead of a function
It is. It also happens to be undefined, and checking that for truth is how I was bitten.