bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 10 hours agoThe meaning of thislemmy.mlimagemessage-square50fedilinkarrow-up1388
arrow-up1388imageThe meaning of thislemmy.mlbestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish · 10 hours agomessage-square50fedilink
minus-squareDemdaru@lemmy.worldlinkfedilinkarrow-up5·10 hours agoNot much experience, but quickly learned .bind() in JS after it switched me to window instead of object.
minus-squarebleistift2@sopuli.xyzlinkfedilinkEnglisharrow-up1·6 hours agoThe key is to not reassign function names to local variables. const print = obj.toString print() // gives you a bad time
Not much experience, but quickly learned .bind() in JS after it switched me to window instead of object.
The key is to not reassign function names to local variables.
const print = obj.toString print() // gives you a bad time