I did not even know that call/bind/apply even exist. Hitesh ji, you nailed it.
@Dev-Phantom11 ай бұрын
I use to think "Call, apply and bind " was just a theoritical nothing practical thing but this is the first time I actually understood the Use Case of "CALL" , one of the best Lecture thanks sir. Again Thanks a lot.
@Hafijur021111 ай бұрын
🎯 Key Takeaways for quick navigation: 00:00 📜 *Introduction to Video and Keywords* - Brief introduction to the video and its purpose. - Emphasis on the importance of understanding keywords. - Mention of the tendency to rush through topics in courses. 00:29 🗂️ *Different Keywords and their Usage* - Explanation of the variety of keywords used in the script. - Noting that multiple keywords are often combined and explained together. - Suggestion to understand keywords at different time durations for better comprehension. 01:10 🚀 *Evolution of React and Coding Practices* - Historical perspective on React's early versions and coding practices. - Description of the initial challenges due to limited language features. - Transition from minimalistic coding to the current abundance of language features and libraries. 01:54 🔄 *Execution Context and Function Interaction* - Explanation of the global execution context and its persistence. - Illustration of how functions maintain their execution context. - Emphasis on the memory and context carried by functions during execution. 02:34 🔄 *Execution Context and Function Relationships* - Explanation of execution context in JavaScript functions. - Advantages of visualizing code through diagrams. - Illustration of the global execution context and nested function contexts. 03:00 🗃️ *Understanding Execution Context Hierarchy* - Introduction to the concept of execution context hierarchy. - Overview of the global execution context and its position in the hierarchy. - Explanation of how nested functions create their own execution contexts. 03:29 🔍 *Challenges with Execution Context References* - Discussion on the challenges of referencing execution contexts in nested functions. - Examination of how 'this' keyword behaves in different contexts. - Highlighting the complexities when functions refer to outer execution contexts. 04:10 🧩 *Troubleshooting Global Execution Context Issues* - Explanation of problems arising from global execution context references. - Introduction to the 'this' keyword and its role in context resolution. - Discussion on common issues related to referencing objects in different contexts. 05:07 🔄 *Overlapping Abstraction in Real-world Scenario* - Discussion on the persistent problem of overlapping abstraction in real-world scenarios. - Introduction to a practical example to illustrate the issue. - Creation of a new file named 'dot.js' to demonstrate practical implementation. 05:50 📝 *Setting User Details Functionality* - Explanation of creating a function named 'setUserName' to set the username. - Implementation of rules to check and fetch username from the database. - Demonstration of accessing and setting user details within the 'setUserName' function. 06:49 🔄 *Internal Execution Context Access in Nested Functions* - Understanding the access of variables declared within functions in the internal execution context. - Illustration of the 'setUserName' method accessing variables declared internally. - Explanation of how internal functions have access to variables declared in their scope. 07:18 🛠️ *Optimizing Function Calls for Better Access* - Optimization strategy for better access to variables within nested functions. - Discussion on creating a new user with a unique keyword for improved access. - Highlighting the significance of organizing and minimizing function calls for efficient code. 07:31 🔒 *Issue with Property Assignment in Execution Context* - Introduction to the problem with property assignment in the current execution context. - Observing the output after running the code and identifying issues. - Lack of proper setting of properties within the object causing unexpected behavior. 08:09 🛠️ *Debugging and Fixing the Property Setting Problem* - Debugging the code to identify the root cause of the property-setting problem. - Recognizing that the 'setUserName' method is not properly setting the 'username' property. - Addressing the issue by correctly assigning the 'username' property within the function. 08:49 🔍 *Analyzing Reference and Execution Context in JavaScript* - Understanding the reference and execution context of the 'setUserName' method. - Discussing the role of the 'set' method in accessing and modifying object properties. - Clarifying the need for proper referencing and execution context to avoid issues. 09:17 🛠️ *Implementing Method of Object Substitution for Clarity* - Introducing the concept of method of object substitution for clearer code. - Demonstrating how the 'Object.subset' method works in the current scenario. - Discussing the advantages of using clear and concise coding techniques for better understanding. 10:14 🔄 *Handling Execution Context Removal and Reference Hole* - Explanation of removing execution context and reference hole within the outer function. - Demonstrating how variables declared inside the function become inaccessible after execution. - The importance of keeping a reference hole and the execution context for proper functioning. 10:29 🚧 *Troubleshooting and Debugging the Reference Hole Issue* - Identifying the need to maintain a reference hole for variables and functions. - Troubleshooting the problem of the reference hole affecting the expected behavior. - Discussing the syntax and practical aspects of resolving the issue. 11:13 🌐 *Utilizing Global Object for Reference Hole Solution* - Introducing the use of the global object to maintain a reference hole. - Demonstrating how to pass the global object as an optional parameter to the function. - Ensuring that changes inside the function do not affect the global context. 12:08 🧰 *Applying Execution Context Pass for Improved Functionality* - Implementing execution context pass as a solution to the reference hole problem. - Clarifying the significance of passing the context and the resulting improvement in functionality. - Emphasizing the importance of understanding execution context in interviews and real-world scenarios. Made with HARPA AI
@amit16_017 ай бұрын
Kuch teachers ke aawaj se unko padhna achha lagta hai. You are one of them Sir..
@ManishPrajapati_IIITS Жыл бұрын
Congratulations sir for 150K subscribers...You deserve much more than that!...
@Dev-Phantom8 ай бұрын
best example for ecplanation of , what is call in js. Thanks sir
@samrat_pandey7 ай бұрын
Watch almost 2 playlist before that, but never ever learn new thing that way. Thank you Sir.
@ketanrtd129 күн бұрын
Very good explanation of the call, and amazing teaching style.
@sourabhkakani1809 Жыл бұрын
one of the best series of JAVASCRIPT in KZbin 👍, the way of explanation is very good . Thanks for making such great videos for us
@sumitsinha99510 ай бұрын
Ekdum badiya explain bhiya ,dimag me hi call stack console.log ho gya !!
@nehabansal3709 ай бұрын
The way you explains sir, that definitely came from years of experience. I used to move from one video to other to understand topics. But now found gem, no need to go anywhere else. Aapke samjhane se sab samajh aa jata h😊
@SarveshKumar-08 Жыл бұрын
01:37 Understanding execution context and 'this' keyword in JavaScript 03:17 Understanding the execution context in JavaScript functions 05:01 Explanation of setting usernames and creating users using JavaScript functions 06:45 Understanding execution context in JavaScript 08:28 Explaining the concept of object substitution and its implications 09:56 Managing execution context in JavaScript [Removing execution context will cause all declared variables to disappear To keep a reference of the execution context, use the "CALL" Method] 11:24 Discussing the use of 'this' in different scenarios and its implications
@architapatnaik687 Жыл бұрын
Great effort sir. This is one of the tricky ones , which you explained very well. I was always wondering why we need call/apply/bind, as we can call a function directly with its name. The only difference is, via call/apply/bind we can set our current context (optionally can send our parameters) , which we cant do via normal function call. But, now i understood, under the hood its the function execution context which play a vital role when there is function inside another function.
@kunnu_46 ай бұрын
12:20, Also run with a call back function to see if the 'this' for the callback does something different
@geeteshyadav124 ай бұрын
sir you have explained it very easily, thank you
@amit16_017 ай бұрын
Love this JAVASCRIPT series.... Love you Hitesh Sir.....🙏🙏🙏🙏
@mdmusaddique_cse74587 ай бұрын
Such good demonstration of call and this. Diagrammatic illustration makes the understanding concrete.
@muhammadarslan786766 ай бұрын
I am addicted to Sir Hitesh Lectures, top notch quality available for free
@akshayjain2777 Жыл бұрын
Thanks sir jii ❤ your content and the way you explain is osm . You made js to easy to learn
@chaiaurcode Жыл бұрын
Thanks ❤️
@abhishekkhatana1256 Жыл бұрын
Sir ise speed se aaj hi complete krwa doge Javascript ko 😂😂😂😂 Thnx sir ise derailed course lane ke liye 🙇🙇🙇🙇
@sufiserious7984 ай бұрын
Detailed*
@RahulSharma-lw2ssАй бұрын
Thankyou for this amazing series
@swapnildapkosh28134 ай бұрын
Hitesh Sir, Thanks 🙏
@TheSuyash088 ай бұрын
Awesome Explanation, Hitesh ji.
@rohitsingh041419 ай бұрын
Amazing explanation! Thank you sir.
@RagSingh-e2e10 ай бұрын
best Series ALL OVER THE UNIVERSE, thank you Sir 🙏
@singhkr8 ай бұрын
thanks a lot for the real world examples that is best thing about your videos
@SoikatDey-ly8vi6 ай бұрын
Mind blowing classes💕
@CheatCodePython3 ай бұрын
kar liya subscribe sir ji. Sir your teaching style is awesome, I really like it. Thank you for your effort.
@chaiaurcode3 ай бұрын
Keep watching
@dynamiczonex Жыл бұрын
one of the best series in youtube sir your efforts hats off👍
@jk-sm6qr9 ай бұрын
Really, very informative video.... Thank you so much
@sachinnarwade1359 Жыл бұрын
Truly❤ A man of commitment 👌🏼👌🏼🙏🏽🙏🏽🙏🏽
@Umarfaooqkhan-dev3 ай бұрын
i love your teaching sir thanks a lot
@harshsajla5219 ай бұрын
sir i'm in love with your teaching style can't express how good I'm feeling to find this channal 🥺
@debasissahoo4997 Жыл бұрын
really like your lectures sir.baht maja aatahe jab appse padhneko milta he , i love you sir.
@prateeksharma377510 ай бұрын
khub bhaloo explaination sir...
@dingo_5998 Жыл бұрын
Dhanayavad Guru G🚩✌
@learncode5110 Жыл бұрын
Sir maja aagya.. ye huwina baat..topics sab cover horahehy... soon react is on the way
@nikhitazulka969311 ай бұрын
Amazing explanation! Thank you sir.
@JAYESH_THAR_14094 ай бұрын
yes!
@AbhishekChoudhary-p1h11 ай бұрын
Superb sir, thanks for the video ❤
@vaibhavlutade11 ай бұрын
Superb sir, thanks the video ❤
@start.learnings19 ай бұрын
The best dialogue of complete series "Kaun sa interview nahi nikalne wala, yahi se nikalwayenge"
@aadityapuri1061 Жыл бұрын
There is a doubt in my mind. This call function is okay, like we can use call to use the reference of other function's execution context. But when we use "this" keyword in the function which is called by the call method then it will always access the other function's execution context, what if I also want to refer to my context. Eg: What if I want a variable named as "username" (whose context refers to its parent function only) in the mentioned example's SetUsername method. "this.username" always gives me context of createUser and append a new child always.
@anujpoudel11 ай бұрын
what is wrong with passing the context through arguement?? function setName(ctx, name){ ctx.username = name; } function createUser(name, email){ setName(this, name); this.email = email; }
@sukhii02203 ай бұрын
because it is not the write way to do it:- you can declare createUser as constructor so that this refer to the new instance of an object. const user = new CreateUser ('yourname', 'yourmailid' );
@simp-chan7578Ай бұрын
you misunderstood 'this' keywrd with variable. 'ctx' you used is avariable passed as argument. both are completely different bro
@shivaay82156 ай бұрын
itna toh chai bhi ni piya hoga jitna chai word sun chuka hun lectures me....😆😆
@this_is_Shreya11 ай бұрын
Just amazing explanation.. Huge respect, sir
@yashjakhar31412 ай бұрын
one of the best couses ever
@aggsha75804 ай бұрын
Thanks A Lot Sir ❤❤
@sambitsuvankar1487Ай бұрын
very well explained sir
@manemanoj3068 Жыл бұрын
Definitely i didn't watch previous videos but it looks like U are on fire bhaiya...❤❤❤
@chaiaurcode Жыл бұрын
Thanks a ton
@azeemdeveloper481510 ай бұрын
I followed a channel to learn DSA but I left because he is always making videos 1hour or for no use and concentrating on his watch time. but you are the perfect, literally very nice series in less time. I am requesting for DSA series also.
@vaibhavsingh345311 ай бұрын
Thank you sir ❤🙏
@shivamsahi8160 Жыл бұрын
Maja aagya❤❤❤
@rajeshkanna18298 ай бұрын
Call is by default then ... closure na 11:03
@SenseiVraj5 ай бұрын
Ji ha yahi se niklenge sare interviews
@Dev-Phantom9 ай бұрын
Deep understanding
@malik-pureheart34529 ай бұрын
Bohat Alla😍
@akroyalmaker7 ай бұрын
Like for a tea ☕
@sahityasingh52895 ай бұрын
Thanks a lot 🙏🏻❤
@junaidahmed820 Жыл бұрын
G.O.A.T Hitesh sir ❤
@iamakashkumarram Жыл бұрын
Another Masterpiece ❤
@BitFire0079 ай бұрын
"Chai aur Code, your videos are like a friend guiding me through the fascinating world of JavaScript!"
@priyankagehlot99456 ай бұрын
Thankyou Sir 😀❤
@MohitSingh-jb9tb3 ай бұрын
Nice Explanation
@sumantagorai5880 Жыл бұрын
Great explanation, Sir. ❤
@joydipsarkar724 Жыл бұрын
another masterpiece of a video explanation❤
@mukeshutmani8 ай бұрын
masterpiece series
@animeshgupta72885 ай бұрын
Amaziiinnnnngggggggggggg Explaination
@tanishkagupta6864 Жыл бұрын
Loved it sir 💖
@jayeshbagul3961 Жыл бұрын
Your hindi😍, i loved it
@digiheadwaybusiness9204 Жыл бұрын
smaj me to aa geya hai subscrib to hum ne phle se hi ker rkha hai, ab to bess like ki daree thi wo bhi ker diya hai :) aap bus content le ker aaty jaye like and share ki chinta chood hi do aap wo to hum aap ke bina khay bhi ker dengay !! kya kery kerna pedta hai content hi etna jada acha hai ki, button like per jaye bina rukta hi nhi :) (:
@abdulmatania8155 Жыл бұрын
awesome explanation sir
@AmarSingh-uw1db Жыл бұрын
Gratitude Sirji ❤❤❤
@DavidBedford-b8f Жыл бұрын
quality content❤
@soumadip_banerjee Жыл бұрын
Lovin the series!
@kashidasmongre9 ай бұрын
Thank you very very much sir Ji
@AnshuKushwaha-xz8di4 ай бұрын
software expert Hitesh Choudhary 😅
@relaxation_music-7ym9 ай бұрын
Thank You Sir ❤❤
@BOSS5511 ай бұрын
thanks ji
@AnonymousPerson-x6t6 күн бұрын
thankyouuuuuu so much sirrrrrrrrrr
@OOAK_India9 ай бұрын
love you sir!
@jrahul424 ай бұрын
nice explanation
@EjazAli-h4c4 ай бұрын
Thank you so much sir
@arshitcc8 ай бұрын
Thank You Sir
@shivanshuhere Жыл бұрын
Learnt call, when on a call 😂🔥
@rZERO_game10 ай бұрын
Mera ek question hAY: HTML,CSS,PHP,JS,MYSQL YEH SAB SIKH KAR KYA iot RELATED PROFESSIONAL LEVEL CODE KAR PAUNGA, YA ISMAY BHI AUR BAHUT KUCH SECURITY LOOP HOLS, SCALABALITY ISSUE AYEGA?
@amanjeetsinghsaluja5246 Жыл бұрын
awesome you explain
@AliAsif-d8f Жыл бұрын
hbaiya apka experience apki teaching m proper kam ata nazar ata hai
@its_Amit_005 ай бұрын
#this
@Kaleemsipra1 Жыл бұрын
love and respect for you sir
@ronitvardhamane6893 Жыл бұрын
at 12:00 what if i use return from SetUsername function and hold it in a variable in Createuser function??
@anandmaurya63843 ай бұрын
Thanku sir
@mdnaimhossen3211 Жыл бұрын
love and respect for you sir
@Vaibhav-y6b6 ай бұрын
nice sir very nice
@ankushladani496 Жыл бұрын
Dhanyawad guruji 🙏
@30sunique78 Жыл бұрын
chaiaurcode >>>>> All KZbinr 😂 content creator be like Lagta hai Students Smart ho gye hai kyuki bo chaiaurcode ko subscribe krne lage hai😂 or chai ki tarah depth me chijo ko sikh rhe hai