Is the second declaration redundant

Is the second declaration redundant

Noticed following lines of jQuery. 

  1. var events = elemData.events = elemData.events || {},
  2. eventHandle = elemData.handle, eventHandle;

I was wondering if the very last declaration of variable eventHandle redundant in this case. or am I missing something?