When using the quojs javascript library, I often come across statements like these:
return r(e,this[0].className)
or
return this[0].style[e]||n(this[0],e)
While I understand that this refers to the "global object," I am curious about the significance of the array. Does it represent properties of the global object?