Aijan@programming.dev to Programming@programming.dev · 12 days agoSelf-documenting Codelackofimagination.orgexternal-linkmessage-square72fedilinkarrow-up1102arrow-down116
arrow-up186arrow-down1external-linkSelf-documenting Codelackofimagination.orgAijan@programming.dev to Programming@programming.dev · 12 days agomessage-square72fedilink
minus-squaretraches@sh.itjust.workslinkfedilinkEnglisharrow-up48arrow-down1·12 days agoAgreed. OP was doing well until they replaced the if statements with ‚function call || throw error’. That’s still an if statement, but obfuscated.
minus-squareBrianTheeBiscuiteer@lemmy.worldlinkfedilinkarrow-up7·12 days agoDon’t mind the || but I do agree if you’re validating an input you’d best find all issues at once instead of “first rule wins”.
minus-squarerooster_butt@lemm.eelinkfedilinkarrow-up3·11 days agoShort circuiting conditions is important. Mainly for things such as: if(Object != Null && Object.HasThing) … Without short circuit evaluation you end up with a null pointer exception.
Agreed. OP was doing well until they replaced the if statements with ‚function call || throw error’. That’s still an if statement, but obfuscated.
Don’t mind the
||
but I do agree if you’re validating an input you’d best find all issues at once instead of “first rule wins”.Short circuiting conditions is important. Mainly for things such as:
Without short circuit evaluation you end up with a null pointer exception.