Funktion määritys ja "nosto" (hoisting)
console.log(f()); // => 123
console.log(g()); // ReferenceError: g is not defined
function f() {
return 123;
}
const g = function () {
return 456;
};Last updated
console.log(f()); // => 123
console.log(g()); // ReferenceError: g is not defined
function f() {
return 123;
}
const g = function () {
return 456;
};Last updated