Irelephant@lemm.ee to Programmer Humor@programming.devEnglish · 1 day agolooks good to melemm.eeimagemessage-square39fedilinkarrow-up1634arrow-down15cross-posted to: [email protected]
arrow-up1629arrow-down1imagelooks good to melemm.eeIrelephant@lemm.ee to Programmer Humor@programming.devEnglish · 1 day agomessage-square39fedilinkcross-posted to: [email protected]
minus-squareWillem@kutsuya.devlinkfedilinkarrow-up14·21 hours agoOn Error Resume Next Visual Basic is a beautiful language
minus-squareKnock_Knock_Lemmy_In@lemmy.worldlinkfedilinkarrow-up4·19 hours agoOn error goto 0 Was always syntacticly confusing for me.
minus-squareFooBarrington@lemmy.worldlinkfedilinkarrow-up62arrow-down1·1 day agotry { operation(); } catch { // nice weather, eh? }
minus-squarelengau@midwest.sociallinkfedilinkarrow-up1·12 hours agowith contextlib.suppress(BaseException): do_thing()
minus-squareKaryoplasma@discuss.tchncs.delinkfedilinkarrow-up12·edit-21 day agoStarting with Java 21 (I think), they’ve introduced ignored variables, so you can now actually do this: try { operation(); } catch (Exception _) { // nice weather, eh? } Edit: forgot that this is about JS lel
minus-squarejubilationtcornpone@sh.itjust.workslinkfedilinkEnglisharrow-up6·23 hours agoSo basically the same as a discard in C#?
minus-squareKaryoplasma@discuss.tchncs.delinkfedilinkarrow-up1·edit-217 hours agoYeah, Python has it as well. I think the only real use of it is code readability since you declare that this variable will never be used.
minus-squareTraister101@lemmy.todaylinkfedilinkarrow-up1·1 day agoIf your joking yes, if your not Java and Java Script are seperate things.
minus-squareJustAnotherKay@lemmy.worldlinkfedilinkarrow-up1·21 hours agoActually made this mistake in front of 20 people the other day. Guy at my job mentioned coding in java and I asked if he was doing web dev 🤦
minus-squareBangersAndMash@lemmy.worldlinkfedilinkarrow-up2·edit-220 hours agoPlenty of java back end web development, so maybe not as embarrassing as you felt?
minus-squareJustAnotherKay@lemmy.worldlinkfedilinkarrow-up1·12 hours agoHe said “I’ve been closing in C# and Java for 2 years” and I asked, in front of everyone, “are you doing web dev?” And he just coldly said no See this could have been fine if I didn’t double down and go “then what are you using java for… OH WAIT”
if (error) { continue; }
On Error Resume Next
Visual Basic is a beautiful language
Was always syntacticly confusing for me.
try { operation(); } catch { // nice weather, eh? }
☑️ PR Approved
Starting with Java 21 (I think), they’ve introduced ignored variables, so you can now actually do this:
try { operation(); } catch (Exception _) { // nice weather, eh? }
Edit: forgot that this is about JS lel
So basically the same as a discard in C#?
Yeah, Python has it as well. I think the only real use of it is code readability since you declare that this variable will never be used.
Same thing right?
If your joking yes, if your not Java and Java Script are seperate things.
His joking?
Actually made this mistake in front of 20 people the other day. Guy at my job mentioned coding in java and I asked if he was doing web dev 🤦
Plenty of java back end web development, so maybe not as embarrassing as you felt?
He said “I’ve been closing in C# and Java for 2 years” and I asked, in front of everyone, “are you doing web dev?” And he just coldly said no
See this could have been fine if I didn’t double down and go “then what are you using java for… OH WAIT”
Thanks. I hate it.