1// Outputs: "Definition hoisted!"
2definitionHoisted();
3
4// TypeError: undefined is not a function
5definitionNotHoisted();
6
7function definitionHoisted() {
8 console.log("Definition hoisted!");
9}
10
11var definitionNotHoisted = function () {
12 console.log("Definition not hoisted!");
13};
14