HiddenLayer555@lemmy.ml to Programmer Humor@programming.devEnglish · edit-22 days agoWhy make it complicated?imagemessage-square117linkfedilinkarrow-up1362arrow-down137file-textcross-posted to: programmerhumor@lemmy.ml
arrow-up1325arrow-down1imageWhy make it complicated?HiddenLayer555@lemmy.ml to Programmer Humor@programming.devEnglish · edit-22 days agomessage-square117linkfedilinkfile-textcross-posted to: programmerhumor@lemmy.ml
minus-squareHotzilla@sopuli.xyzlinkfedilinkarrow-up5·edit-22 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.
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.