@[email protected] to Programmer [email protected] • 2 years agoPure Evillemmy.worldimagemessage-square14fedilinkarrow-up1201cross-posted to: [email protected]
arrow-up1201imagePure Evillemmy.world@[email protected] to Programmer [email protected] • 2 years agomessage-square14fedilinkcross-posted to: [email protected]
minus-square@[email protected]linkfedilink17•2 years agoYes. Besides, Javascript doesn’t need semicolon since 2016.
minus-square@[email protected]linkfedilink7•2 years agoWait, did you just made a meme of my comment? Awesome!
minus-square@[email protected]linkfedilinkEnglish18•edit-22 years agoAutomatic Semicolon Insertion (ASI) has (sadly) been a part of JavaScript longer than 2016. I’m not sure exactly when it was introduced, but this document from 2009 already contains it: https://web.archive.org/web/20120418215856/https://ecma262-5.com/ELS5_Section_7.htm#Section_7.9 IMO it’s bad practice to rely on ASI since the semicolons may not get inserted where you expected them to. The following snippet const x = 0 const y = x [1, 2, 3].forEach(console.log) is interpreted as const x = 0; const y = x[1, 2, 3].forEach(console.log); which raises a TypeError. There are more examples of ASI not doing the right thing on the web, so I don’t agree with “Javascript doesn’t need semicolon”.
minus-square@[email protected]linkfedilinkEnglish5•2 years agoAs Mark Twain said, “Never discuss politics, semicolons, tabs, or religion in polite company.”
minus-square@[email protected]linkfedilink2•2 years agoUse an autoformatter for all code (both in the editor on save/type and as CI check). There is no problem anymore.
minus-squareSkull giverlinkfedilink2•2 years agoJavascript doesn’t need semicolons in the same way it doesn’t need indentation. Great feature for when you’re minifying code, but can easily lead to weird bugs.
Yes.
Besides, Javascript doesn’t need semicolon since 2016.
Wait, did you just made a meme of my comment?
Awesome!
Glad you take it like a champ :)
Automatic Semicolon Insertion (ASI) has (sadly) been a part of JavaScript longer than 2016. I’m not sure exactly when it was introduced, but this document from 2009 already contains it: https://web.archive.org/web/20120418215856/https://ecma262-5.com/ELS5_Section_7.htm#Section_7.9
IMO it’s bad practice to rely on ASI since the semicolons may not get inserted where you expected them to. The following snippet
is interpreted as
which raises a
TypeError
.There are more examples of ASI not doing the right thing on the web, so I don’t agree with “Javascript doesn’t need semicolon”.
As Mark Twain said, “Never discuss politics, semicolons, tabs, or religion in polite company.”
Use an autoformatter for all code (both in the editor on save/type and as CI check).
There is no problem anymore.
Javascript doesn’t need semicolons in the same way it doesn’t need indentation. Great feature for when you’re minifying code, but can easily lead to weird bugs.