Function Definition Vs Function Declaration
Function Declaration
Function Declaration is a practice in which a function is created with a function keyword and can be called before the actual function is being written.
//function declaration
myFunction();
function myFunction(){
console.log("Fun...
neeltyper001.hashnode.dev1 min read