js function declaration vs expression code example
Example 1: function expression vs function declaration
const functionExpression = function(width, height) {
return width * height;
};
console.log(functionExpression(3, 4));
function functionDeclaration(width,height){
return width * height;
};
console.log(functionDeclaration(3,4));
Example 2: js function expression
const plantNeedsWater = function(day){
if (day === 'Wednesday'){
return true;
} else{
return false;
}
}
console.log(plantNeedsWater('Tuesday'))