minification

How important is using tiny variable names in Javascript?

It seems like, for many javascript widgets, the authors have made a conscious effort to use tiny variable names. For example: // Instead of... this.mousePositions = new Array(); // they use... this.mp = new Array(); My question is this: how important is this in terms of reducing overall javascript file request size? I'm working on rel...