Learn JavaScript Variables In One Video! Learn JavaScript Variable Var, Let, and Const.

Publié le: 18 août 2024
sur la chaîne: Tech With Saini
89
2

Learn JavaScript Variables In One Video! Learn JavaScript Variable Var, Let, and Const.
Variable Keywords:
var :
var x; //declaration
x = 10; // assignment
var y =20; // initialization

1. function scope. : you can declare variable using var anywhere in function
and access it from anywhere
2. it allows shadowing : re-declaring or re- initialization but not assignment.
var x;
x = 10;
var x =20;
3. it support hoisting. it tells the interpreter that i am here.


Let
: it defines the block. it will work in closure.
it doesnt support hoisting
it also dont support shadowing
it support declaration, assignment and initialization.




Const : it also defines block scope
it will not allow hoisting and shadowing.
it will allow declaring and assignment.
it supports only initialization.


Sur cette page du site, vous pouvez voir la vidéo en ligne Learn JavaScript Variables In One Video! Learn JavaScript Variable Var, Let, and Const. durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Tech With Saini 18 août 2024, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 89 fois et il a aimé 2 téléspectateurs. Bon visionnage!