I'm reading the backbone.js documents and seeing a lot of code that assigns attributes to the window object:
window.something = "whatever";
what's the difference between calling this code, and just assigning the variable and creating a global var, like this:
something = "whatever";
i assume there is some kind of scope different, and/or object ownership difference (window being the owner vs not) but i am interested in the detail between the two and why i would use window vs not use it.