Possible Duplicate:
JavaScript: var functionName = function() {} vs function functionName() {}
What’s the difference in those declarations (in JavaScript)?
Is there any differences between the following function declarations:
function wtf() {
}
lol = function() {
}
omg: function() {
}
?
Regards