ES6 and Typescript Tutorial - 6 - let Keyword

preview_player
Показать описание

📱 Follow Codevolution

About the 'let' keyword in ES2015.

ES6 | ES2015 | Typescript | ES6 Tutorial | ES2015 Tutorial | Typescript Tutorial | ES6 Tutorial for Beginners | ES2015 Tutorial for Beginners | Typescript tutorial for Beginners
Рекомендации по теме
Комментарии
Автор

function scope, block scope are very clear , they are such a nice that I never heard before this like lectures

thirumaleshwarratna
Автор

Awesome lesson man. Keep up the good work.

cassavandumbi
Автор

Sir let is hoisted but they are in "temporal dead zone" before initialization

ayanmaji
Автор

Nice tutorial !
Please say, what extension you use to debug you es6 code in this video.

taenahammed
Автор

Let and const variables are hoisted but not initialised right?

santhoshkb
Автор

this video: let is not hoisted and has the block scope and can not be redifined ( let a=1; let a=2 ->error)

toannew
Автор

Hey! nice tutorials, but you can improve the console.log syntax with the brand new ECMAScript 6 features, here is an example:

var a = 'Hello';
var b = 'World!';

//you can skip one line with \n like in C/C++

console.log(`${a} ${b}`);

ibraback
Автор

when I run with ctrl+shift+b then it will be run otherwise not. but in your tutorial you just save and run it will okay. whats the problem of mine?

SabbirAhmed-cmhk
Автор

hi sir, my vscode is not showing any errors like yours when I write the code. What can be the issue

jayeetakar