Sorry for the rather beginner question. What's the differences of function usage between
$(document).keypress(function() {
  //some code
});
and
var somethingElse = function() {
  //some code
};
I know the latter is to create a function similar to Java's
public void somethingElse() {
  //some code
}
but I always assume the former as anonymous function that act inside a method. Can someone shed me some light regarding this? Thanks.
 
     
     
    