[jQuery] basic jQuery/JavaScript pattern

[jQuery] basic jQuery/JavaScript pattern


I keep running across this type of pattern in the jquery source code.
(function(){
...
})();
How is this basic to understanding how jQuery works, and how
JavaScript works?
Thanks in advance.