WackyTabbacy42069@reddthat.com to Asklemmy@lemmy.ml · vor 3 JahrenWhat's your favorite programming language and what about it do you like?message-squaremessage-square176linkfedilinkarrow-up1150arrow-down14
arrow-up1146arrow-down1message-squareWhat's your favorite programming language and what about it do you like?WackyTabbacy42069@reddthat.com to Asklemmy@lemmy.ml · vor 3 Jahrenmessage-square176linkfedilink
minus-squarecocobean@bookwormstory.sociallinkfedilinkEnglisharrow-up2·vor 3 JahrenI had to use Python for a bit at work and it was confusing pipenv, venv, virtualenv, poetry…wtf is all this shit a.b vs a['b'] vs a.get('b')…wtf is a KeyError
minus-squarerichieadler@lemmy.myserv.onelinkfedilinkEnglisharrow-up5·vor 3 JahrenWhat happens in other languages you use when you try to access a non-existing key for a hash/map/dict? What language do you use that accessing an object attribute is the same that accessing a dict key? What knowledge do you have (or not) that KeyError is a mistery to you?
minus-squareHallainzil@lemmy.worldlinkfedilinkarrow-up3·vor 3 Jahren What language do you use that accessing an object attribute is the same that accessing a dict key? Javascript / Typescript.
minus-squarerichieadler@lemmy.myserv.onelinkfedilinkEnglisharrow-up3·vor 3 JahrenWell, yeah, I thought about later. Lua does the same. The other questions are still valid, though.
minus-squarecocobean@bookwormstory.sociallinkfedilinkEnglisharrow-up1·vor 3 JahrenReturn undefined. Typescript. Why error? Just return undefined. Simple, no try/catch needed.
minus-squarerichieadler@lemmy.myserv.onelinkfedilinkEnglisharrow-up1·vor 3 JahrenBecause that’s prone to errors. And the Zen of Python includes “explicit is better than implicit” and “Errors should never pass silently”. Languages that do otherwise create bad habits.
minus-squarecocobean@bookwormstory.sociallinkfedilinkEnglisharrow-up1arrow-down1·vor 3 JahrenIs it? It’s just an optional property. And Typescript will tell you that it’s optional.
minus-squarecocobean@bookwormstory.sociallinkfedilinkEnglisharrow-up1·vor 3 JahrenPeople love to complain about npm and node_modules, but I think they were on to something with the simplicity of it.
I had to use Python for a bit at work and it was confusing
pipenv, venv, virtualenv, poetry…wtf is all this shit
a.bvsa['b']vsa.get('b')…wtf is a KeyErrorWhat happens in other languages you use when you try to access a non-existing key for a hash/map/dict?
What language do you use that accessing an object attribute is the same that accessing a dict key?
What knowledge do you have (or not) that KeyError is a mistery to you?
Javascript / Typescript.
Well, yeah, I thought about later. Lua does the same.
The other questions are still valid, though.
Return undefined.
Typescript.
Why error? Just return undefined. Simple, no try/catch needed.
Because that’s prone to errors. And the Zen of Python includes “explicit is better than implicit” and “Errors should never pass silently”. Languages that do otherwise create bad habits.
Is it? It’s just an optional property. And Typescript will tell you that it’s optional.
People love to complain about
npmandnode_modules, but I think they were on to something with the simplicity of it.