A function expression is not hoisted with its body.
Acceptance criteria
- 1.#out should show 36.
A function expression is not hoisted with its body.
const square = function (n) { return n * n; }; document.querySelector('#out').textContent = typeof square === "function" ? "not yet" : "broken";
Output ready when you are
Press Run to render your code, or Submit to validate your solution.