Is the second declaration redundant
Noticed following lines of jQuery.
- var events = elemData.events = elemData.events || {},
- eventHandle = elemData.handle, eventHandle;
I was wondering if the very last declaration of variable eventHandle redundant in this case. or am I missing something?