In some projects I can see, that the functions wich are object methods get names after the function constructor - I can not see why, can any one explain?
Example: named
someObj.prototype = {
        load: function someObj_load(file) {
vs unnamed
someObj.prototype = {
        load: function(file) {
I can not see any advantage in the above.
 
    