DEV Community

Cover image for Day 8 : Learning JS Fundamentals, Part-2
Gaurav-Shekhawat
Gaurav-Shekhawat

Posted on

Day 8 : Learning JS Fundamentals, Part-2

see the below example:-
Alt Example

In the function above, we have not declared the variables teacher and topic, still we assigned them values. When we call this function, this changes the value of the "teacher" variable present in the global , while the topic will be declared as a new variable in the global scope, hence the output of the last line will be "React".


Undefined vs Undeclared

clear from the name...


function expressions

Function expression

Arrow function Expressions

just skim through the above two articles starting paragrpahs.


AimageText

The first function above is an example of anonymous function expression while the second is a named function expression.

Example for arrow functions:-
Alt fdText


Immediately invoked function expressions

Als Texfdt

These are used in places of our code where we need to collect a set of variables and protect them from encroaching upon an outer scope. These are not used nowadays, instead block scoping is used(with let).

Block scoping

Alt Texft

In the below example, the variable temp will be available only inside the if block.

var are good, when you want to define a variable at a function level. (as the scope of var is global or the function in which it is defined).

Alt Tefdxt

Latest comments (0)