@bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish • 2 days agoThe meaning of thislemmy.mlimagemessage-square62arrow-up1511
arrow-up1511imageThe meaning of thislemmy.ml@bestelbus22@lemmy.world to Programmer Humor@lemmy.mlEnglish • 2 days agomessage-square62
minus-square@Demdaru@lemmy.worldlinkfedilink5•2 days agoNot much experience, but quickly learned .bind() in JS after it switched me to window instead of object.
minus-square@bleistift2@sopuli.xyzlinkfedilinkEnglish2•1 day 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