Describe JavaScript function expression and its nuances
?
The `function` keyword can be used to defined a function inside an expression
const getRectArea = function (width, height) {
return width * height;
}
console.log(getRectArea(3, 4))
// 42
<!--SR:!2025-11-23,5,210-->