IIFE (Immediately Invoked Function Expression)

What does the following code do?
(function($) {
  // Code that uses jQuery
})(jQuery);
Next Question (8/25)