Benefits of function declaration Vs function expression?
id:45Function expressions do not pollute the global space. Function declarations provide more detail and context for error messages or debugging. Function declarations are used for recursion. Function expressions can be passed as an argument to another function, but function declarations can not.