This is probably a stupid question, but I am hoping to find out from someone who knows better than I do, is there any difference between the following function declarations within a class?
someFunction: function (obj) {};
and
someFunction: function someFunction (obj) {};