Function Declaration vs Function Expression
Function Declaration: A function declaration defines a function with the specified parameters. The function declarations are processed before the code block is executed. They are visible everywhere in the block. function sayHi () { ...some code h...
