var clicked = $(event.currentTarget || target);
var clickedIsActive = clicked[0] == this.active[0];
I'm fairly new to js, and while attempting to read through some jQuery code, I came across the above section.
What is the precedence for the second line?
Is it:
var clickedIsActive = (clicked[0] == this.active[0]);
Or is it something else?
Thank you.