Please support me by subscribe, like and comment :) thank you
@sakshimatiray98 Жыл бұрын
😊😊😊😊l
@sakshimatiray98 Жыл бұрын
😊😊😊😊l
@sakshimatiray98 Жыл бұрын
Bl
@priyeshtandel21012 күн бұрын
Helpful
@chakshuarora71622 жыл бұрын
Hats off to you Anil sir, most underrated you are but definitely you are a gem instructor of coding. Love , love and only love to you
@samadhansoft3 ай бұрын
Very Awesome Closure explanation
@MohitKumar-nf5jn2 жыл бұрын
It’s really famous question,Thanks you sir for that 👌
@dilpavittarpalsingh90882 жыл бұрын
thank you sir aap bht achha teach krte hai bht saare topics maine aapki videos se kiye hai , aap ek video debpuncing and throttle me banana me usmein ee fasta kahi se v acchi example nahi mili and isko tab kaise apply krein jab api pr kaam krna ho aur isko aur kaha aur kaise use kre sb acche se explain krna . thank you brother
@Dev-Phantom Жыл бұрын
very informative, Thanks for the cool enough concept.
@sohailanjum8060 Жыл бұрын
this is great video for closure and best of one on youtube
@codestepbystep Жыл бұрын
Glad you like
@vinaypatil80092 жыл бұрын
It's really great help 😃 Please sir , Make such kind of video more in javascript and Reactjs also.
@tusharsamanta70282 жыл бұрын
Fine Conception clear!!! Thank you so much!
@chetanpl Жыл бұрын
Sir really you clear my some concepts
@arthurplayz44242 жыл бұрын
@Code Step By Step Sir javascript ke jo complex topics hai uske related bhi video banao like promise , async & await, callback please, and thank you so much for always good content ❤️
@trashtalker_tushar2 жыл бұрын
raka bhai bigfan
@zeeshan_shaikh_Vlogs Жыл бұрын
Nicely explained bro ❤
@Sumitpatel-ww4ny Жыл бұрын
Very nicely explained
@World_information55682 жыл бұрын
Sir kaya ap btaye gay k DSA k Kon say topics ma say zayada tar interview questions atay hain?
@komalkhatik10992 жыл бұрын
Its really Awesome...👍🏻
@codestepbystep2 жыл бұрын
Thanks for watching
@kaushalpatel22842 жыл бұрын
Good explanation 🙏
@tejasgiri16502 жыл бұрын
Memorize means it gives reference to the memory where that variable is stored?
@RavindraSingh-zg9eq11 ай бұрын
Guess the output of this for better understanding of closure? function Outer(){ let a=1; return ()=> {console.log(a++)} } const obj = Outer() obj() obj() Outer()()
@abhinav74802 жыл бұрын
Sir jo apne inner() ko call kiya thaa bo function thaa ya phir let inner thaa. Because the name are same
@MohitKumar-nf5jn2 жыл бұрын
Sir please, can you make video of linked list with functional and thank you 🙏
@monnuvibes Жыл бұрын
But if we defined with var keyword then I think we can use this a value outside of the function
@MRAgundli Жыл бұрын
good
@AtulGunjal Жыл бұрын
Maine search kiya tha :- what is closure anil sidhu 🤔😂😂😂
@rupendrakumar1282 жыл бұрын
Awesome 👍
@codestepbystep2 жыл бұрын
Thanks 🤗
@Radhe_radhe2929 Жыл бұрын
❤❤
@UttamKumar-cn3mw2 жыл бұрын
sir hmai output [[1,2],[3,4],[5,6],[7,8],[9] chaheye toh kaise banega.. please solve this sir
@premsingh69672 жыл бұрын
@sandiproy34172 жыл бұрын
nice bhiya but r saraja samjane se accha h0ta
@PROTECHRAHUL2 жыл бұрын
Isn't it currying too?
@rokckerzzzz60802 жыл бұрын
Yes you can, replace test()(); with the below line of code. let inner=test(); inner();
@priyabansal99112 жыл бұрын
Sir lecture bhi provide kardo
@codestepbystep2 жыл бұрын
Lecture?
@priyabansal99112 жыл бұрын
If possible share these ppts
@pinkimandal6842 Жыл бұрын
apke video me closure ki spelling galat hai
@vlogsonu3989 ай бұрын
Koi mujhe function return achha se samajha sakta hai
@tejusgroup66952 жыл бұрын
Hi Anil sir, Thanks for valuable information, i have one query sir, let a=10 { var a=20; } console.log(a) It will show syntax error . var a=10 { let a=20; } console.log(a) it will show 10 Y its so. sir
@akashaher64792 жыл бұрын
We can't redeclare the variable that is declared with let keyword.
@mdfaiyazulhussain87522 жыл бұрын
//case 1 let a = 10 // a is declared with let variable console.log(a) { //var a = 20 // its gives SyntaxError: Identifier 'a' has already been declared. } console.log(a) //case 2 var b = 10 console.log(b) //here you are accessing value of b at global scope { let b= 20 //local scope console.log(b) //you can access value b only in block scope } console.log(b) // here you are accessing value of b at global scope
@tejusgroup66952 жыл бұрын
@@mdfaiyazulhussain8752 thank you
@misterad5128 Жыл бұрын
Sir jb hum inner() function ko console.log krty hain tu previous value kese store rakhta hai like 301, 302, 303,304 Test() har baar chalta hai tu har bad 300 value milni chahye a ko Guide me please