Комментарии:
loving it and learning it. Thanks Hitesh Sir😇
Ответитьthank you
Ответить4 years of college ❌ Hitesh sir ✅💀☠️ love from Pune❤
ОтветитьThank you so much sir itne achhe se samjhane k liye main JS kafi time se Sikhne ka try kr rhi thi but aapne itne achhe se sikhaya hai ...thank you ❤
Ответитьchai or code
ОтветитьThank you so much sir ❤😊
Ответитьgajjab ka content hai
ОтветитьHitesh Choudhary I am watching your videos and practicing the concepts on daily basis and hope to become fluent in it one day. Just one thing - I don't sit with Chai because I watch this in the morning around 7 or 8 am. And I take tea in the evening only 😃
ОтветитьThank you so much, Hitesh Sir 🙏. I have watched your JavaScript English series too, but since I come from a Hindi background, I can now understand the concepts much more easily. Thanks again!
Ответить06/10/24 >>> {21/51}
Ответитьbut what when we have to declare a let type of variable in global scope and need to update it in scope {} and then print updated values out side of scope?
""
let a =10
{
// update value
a=a+1
}
//need to print 11 here
console.log(a)
""
how to handle this scenario?
Best video of js .
ОтветитьThank you very much
ОтветитьNice
ОтветитьCFBR
Ответитьsach me sir aapke jaise pdhane ki technique kisi ke pass nhi .... aapke jaise teachers ki jrurat har CS background ke colleges me kyuki wha iss trh se depth me or practically cheejo ko nhi smjhate hai.... syd unlogo ne v aapki series nhi dekhi🤭.... thank you so much sir aisi series bnane ke liye
ОтветитьSir c++ ka course khatam hone k baad DSA with javascript padhaiye na please sir
ОтветитьSirf ratt rtaa k 4 din my asy ni bn jatay hain teachers, great saying, Amazing methodology of teaching. Keep creating knowledgeable content for us.
Ответитьgreat video
ОтветитьSummary Of Lec-21:
// Scope of var.let,const
// 1. const : once it is created and intialzed it will not be changed.
// 2. var,let : var,let value will be changed if you want.
// 3. All there variables inside teh function and outside is global.
// 4. But if you create a var inside if/while/else/elseif... then var becomes global and the value gets changed as mentioned below value will get 3.
// * Avoid using var, you can prefer const and let, most preferred let as it can be changed in some cases when needed. *
var c = 300
let a = 365
const b = 2
// ----> In case if/else/elseif...... the scope becomes block/local scope
if (true) {
let a = 10
const b = 20
// b=2 // it will not change and gives an error --->TypeError: Assignment to constant variable.
console.log("Block of B ",b) // 20 --> const b once is updated in block scope but if you try again to change it will not as it is const datatype.
console.log("INNER: ", a); // 10 --> here a becomes
// c=3 ---->var c is changed to 3 and become global value.
}
console.log(a); // 365 --> even if a,b is changed inside the if it will remain it's global value which is intialized before if.
console.log(b); // 2
console.log(c); // 300 ----> if inside the if the c value is changed then that value(3) is printed here as it becomes global.
thanks
ОтветитьThank you sir ❤
Ответитьdhanyaad sir
ОтветитьThanks A Lot Sir ❤❤
Ответитьsir maine kafi saari video dekhi pr zada kuch samjh nhi aa rha tha pr app ki video se array,object,function,scope ye sab kafi achche se samajh aa gya
ОтветитьYou are one of the best teacher i have been seen ever ❤❤ hat's off to you sir
ОтветитьThank you for your effort, sir. I'm really thankful to you from the depths of my heart. After finishing my engineering, I have a good command on my javascript from earlier but I got lots of new concept from this playlist. Thanks a lot sir 🙏
ОтветитьAfter watching so many tutorial finally found something which make it easy to understand javascript i wish i could have come here earlier.
ОтветитьMaza aa raha h coding sikhne m meri chai kha h (jack🐱 ki awaj m )
ОтветитьGreat video
Ответитьlove the series sir
Ответить😃
ОтветитьHello from Pakistan. Amazing content!
Ответитьsir serirs bht achi ha kindly DSA in JS b launch kren please
Ответитьdone ✅✅
Ответитьdone ✅✅
Ответитьnice
ОтветитьI am following this series from the starting the way of teaching of Hitesh sir is amazing. Best JS series on the Internet.
Ответить1
ОтветитьMore in-depth chahiye sir ❤😮
ОтветитьLove from Nepal🇳🇵
Ответить