🔰function expression

an expression that evaluates to a function object.

JSvaluefunction ⟩ expression

an expression that evaluates to a function as value.

//           ╭─── 🔸 function expression ───╮
const area = function (w, h) { return w * h };

Last updated