JavaScript Interview Episode 1 - Difference between a Function Declaration and Function Expression

Publicado el: 26 abril 2024
en el canal de: NomadCoder
357
13

There are three ways a JavaScript function can be created. They are as follows:

1. Function declaration
2. Function expression
3. Arrow function

When you create a function as a declaration or statement, it gets hoisted at the top of the execution context and can be used before it is made. Example below:

console.log(Foo());
function Foo(){

return "Returned from function Foo";
}


When you create a function as an expression, it does not get hoisted at the top of the execution context and cannot be used before it is made. Example below:

console.log(Koo); // error
var Koo = function Koo(){
return "Return from function Koo";
}

Watch the full video for explanation. Also please like and subscribe the channel.


En esta página del sitio puede ver el video en línea JavaScript Interview Episode 1 - Difference between a Function Declaration and Function Expression de Duración hora minuto segunda en buena calidad , que subió el usuario NomadCoder 26 abril 2024, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 357 veces y le gustó 13 a los espectadores. Disfruta viendo!