HiddenLayer555@lemmy.ml to Programmer Humor@programming.devEnglish · edit-24 days agoWhy make it complicated?lemmy.mlimagemessage-square121linkfedilinkarrow-up1365arrow-down139file-text
arrow-up1326arrow-down1imageWhy make it complicated?lemmy.mlHiddenLayer555@lemmy.ml to Programmer Humor@programming.devEnglish · edit-24 days agomessage-square121linkfedilinkfile-text
minus-squarePsaldorn@lemmy.worldlinkfedilinkarrow-up10·4 days agoIf there’s only two options you only need one keyword
minus-squareLemminary@lemmy.worldlinkfedilinkarrow-up1·2 days agoAh, but this is JS, so there are three options! And they all function entirely differently. And your assumptions don’t apply, either. :D
minus-squareHotzilla@sopuli.xyzlinkfedilinkarrow-up5·edit-23 days agoTrue, but var and let are not same in js, so there is three. if(true) { var a = "dumdum" } console.log(a) Is valid and functioning javascript. With let it is not.
If there’s only two options you only need one keyword
Ah, but this is JS, so there are three options! And they all function entirely differently. And your assumptions don’t apply, either. :D
True, but var and let are not same in js, so there is three.
if(true) {
var a = "dumdum"
}
console.log(a)
Is valid and functioning javascript. With let it is not.