Function Expression vs. Function Declaration
Format
// Function Expression
const expression = function () {
console.log('this is a function expression);
}
// Function Declaration
function declaration () {
console.log('this is a function declaration);
}
Difference
Name
A function exp...
jaeyeonjung.hashnode.dev1 min read