I noticed that there is always a \"min\" version (stands for mini?) for most JavaScript libraries (e.g., jQuery).
What is the difference? Less functionality but smal
Its been "minified". All the functionaility is there, just in a minified version that is smaller for saving transfer bandwidth.
Things to become "minified":
Here is an example
function myFunction(someReallyLongParamName)
{
someReallyCrazyName = someReallyLongParamName;
}
could be come
function myFunction(a){b=a;}