Hacker News new | ask | show | jobs
by migstopheles 4763 days ago
I would say that knowing how operators are affecting your code is something that a lot of JS devs probably don't fully grok. For example, why this works: ~function(){}(); or why this... x = (y = 1, 3) ... sets x equal to 3 and y equal to 1. It's not too useful in day-to-day coding, but it shows a deeper understanding of what's going on in there.