Advanced JavaScript Tutorial in Hindi [Part 79] - Let and Const in ES6
In this video i will talk about Let and Const in ES6. let is now preferred for variable declaration. It's no surprise as it comes as an improvement to var declarations. It also solves the problem with var that we will cover. Const : Variables declared with the const maintain constant values. const declarations share some similarities with let declarations.