Control flow in javascript in 1 shot | chai aur

  Рет қаралды 183,791

Chai aur Code

Chai aur Code

Күн бұрын

Пікірлер: 356
@mrkamboj4313
@mrkamboj4313 6 ай бұрын
2:13 - why control Flow? 2:54 - if-statement 5:00 - comparison operators 10:20 - "else" keyword 11:40 - difference between "var" & {"let", "const"} regarding scope. 14:42 - Implicit scope 16:17 - suggestion 17:00 - else - if 23:36 - practical use case mentioned 24:33 - switch case statement (useful in redux) 30:12 - "truthy" & "falsy" values. 33:04 - Rules of "truthy" & "falsy" consideration 37:18 - Empty array check 38:10 - Empty object check 41:00 - nullish coalescing operator 42:25 - significance of "??" operator 46:00 - confusion warning!! 48:25 - summary
@ankitmishra-d2s
@ankitmishra-d2s Жыл бұрын
minor error at 28:15. If there is no break statement added before the default case, default will also be executed. In this example, the default case was not executed because the break keyword was used before it. Thanks for this series btw..!! ❤❤❤
@chaiaurcode
@chaiaurcode Жыл бұрын
Oops my bad. Thanks for pointing it out
@himanshukhuranavz5543
@himanshukhuranavz5543 Жыл бұрын
@@chaiaurcodesir you are like a hidden Einstein for students, Even intricate things you make so simple for us, just by your simplicity of teaching, Glad i found you on youtube, thanks to you youtube , he had given a mentor like you, Sir ❤❤❤
@user-ou3kx7hf4sx
@user-ou3kx7hf4sx 9 ай бұрын
@@chaiaurcode kinndly give warning in description some student might face issues in future
@Sakshamchoudharyofficial
@Sakshamchoudharyofficial Жыл бұрын
Unstoppable. 💨
@harsh-alashi
@harsh-alashi Жыл бұрын
"Haan ji", "Koi dikkat hi nahi hai" has a seperate fan base
@Instrumentation010
@Instrumentation010 Жыл бұрын
First time i didn't get bore in such long tutorial video, you nailed it Hitesh Sir, salute to you.
@akshay12341
@akshay12341 3 ай бұрын
45:59 // Another case: let value = null ?? undefined; // Output = undefined or let value2 = undefined ?? null; // Output = null // In both the cases above the second value is picked since `??` considers null and undefined equally.
@printhere5125
@printhere5125 Жыл бұрын
06:37 Control flow is an important concept in JavaScript that allows the program to execute certain code based on conditions. 13:14 Control flow in JavaScript involves the use of conditional statements. 19:51 The scope of variables declared using the const and let keywords is limited to the block they are declared in 26:28 Control flow in JavaScript involves executing different portions of code based on conditions. 33:05 Understanding control flow in JavaScript 39:42 Falsy values in JavaScript include false, 0, negative 0, empty string, null, undefined, and NaN. 46:19 Understanding the concept of nullish coalescence operator in JavaScript. 52:50 The video covers control flow in JavaScript, including the ternary operator and if-else statements.
@rahulbarik6347
@rahulbarik6347 Жыл бұрын
whenever i saw your youtube channel and learn programming language not only learn programming language but also understand that topic used in IT production thank you sir for making javascript series in hindi i hope the best series in youtube 😀😀😀
@mdnaimhossen3211
@mdnaimhossen3211 Жыл бұрын
function isJavascriptHard(teacher){ if(teacher=="Hitesh Choudhary"){ console.log("Javascript is easy") } else{ console.log("javascript is difficult") } } isJavascriptHard("Hitesh Choudhary") 🖤💙🖤
@harleenkaurmakhija9935
@harleenkaurmakhija9935 Жыл бұрын
waah kya baat :)
@Leo-gaming-le
@Leo-gaming-le 8 ай бұрын
I learn so much from this video.... Me jb bhi Chai or Code pr aata hu muje hmesha kuch nya sikhne ko milta hai... ❤❤
@Hafijur0211
@Hafijur0211 11 ай бұрын
🎯 Key Takeaways for quick navigation: 00:28 🧠 *Understanding data types and execution in JavaScript is crucial for building a strong foundation in programming.* 00:57 💡 *The video aims to cover control flow comprehensively within a single video, focusing on syntax and avoiding unnecessary repetition.* 01:54 🌐 *Creating files within the "04" folder, starting with a file named "$1.js" for organizing the code.* 02:09 👀 *Checking the code files to ensure that functions, scopes, and other components are correctly set up for execution.* 02:36 🔄 *Control flow or logical flow in programming should dictate when specific portions of code run based on conditions, enhancing overall program control.* 03:05 🔄 *When writing conditions, open the scope after it. The internal code inside the scope will execute only if the condition is true.* 03:31 ⚠️ *Be cautious about statements like "if false, later false." Only execute the code inside the scope if the condition is true.* 04:10 ⚖️ *Basic conditions involve checking if a value is equal, greater than, or less than another. Understand how comparisons work.* 05:00 🔄 *When comparing values, operators like "greater than," "greater than or equal to," and "equal to" help define conditions in your code.* 05:56 🔄 *Understand the difference between single and double equals. Single equals assigns a value, while double equals checks for equality.* 06:10 🔄 *Use "==" for checking equality in conditions, and "=" for assignment. Clarify the purpose of operators to avoid confusion.* 06:24 ❌ *Be cautious with negative statements in conditions. Verify that your negations and checks provide the expected results.* 06:38 🔄 *Conditional statements in JavaScript can be implemented using if conditions.* 07:09 📝 *Triple equals (`===`) in JavaScript checks both value and type equality.* 07:25 🚀 *Executing code based on strict type checking can be achieved using strict equality (`===`).* 09:17 🌡️ *Implementing a basic temperature check using if conditions and strict equality in JavaScript.* 10:17 🧐 *To check conditions in JavaScript, use keywords like `if` and `else`. Ensure that the conditions are correctly formulated.* 11:51 🧮 *Scope is essential; understanding global and function scope helps prevent variable conflicts and ensures code functions as intended.* 15:22 🛠️ *Use "direct" to execute code directly within the scope. Be cautious with implicit scopes; one-line execution is automatic.* 15:50 📄 *Write multi-line conditions by using common practices, and execute tests for verification.* 16:32 ❌ *Avoid impractical practices for the sake of impressing others; prioritize clean and readable code over unnecessary complexity.* 16:45 🔑 *Understanding the basics of how "if-else" conditions work in JavaScript; focus on nesting and executing conditions as needed.* 16:59 🔄 *Introduction to nesting in JavaScript; the importance of checking multiple conditions and handling scenarios with multiple conditions.* 17:27 🛠️ *Using if-else statements with greater than (>) condition to execute code.* 18:01 🧐 *Implementing multiple conditions using else-if statements.* 18:54 🧠 *Using the else statement for a final execution when no conditions are met.* 19:24 🤔 *Discussing the application of multiple conditions in real-life scenarios, such as online shopping.* 20:08 💳 *Exploring the concept of multiple conditions for user access and transaction authorization.* 21:22 🔄 *Using multiple if statements for handling various conditions.* 22:03 📝 *Implementing conditional rendering based on user details like email format, day availability, and having a debit card.* 23:19 ✔️ *Simplifying conditions by combining multiple checks, ensuring at least one condition is true.* 23:46 🛑 *Dynamically changing UI elements based on user conditions (e.g., showing login/logout buttons).* 24:14 📂 *Introduction to creating a new file and exploring different formats in JavaScript control flow.* 25:37 🔄 *Demonstrating the use of the `switch` statement with a practical example of checking values against different months.* 26:04 🔄 *Explaining the importance of using a `break` statement in each `case` to avoid fall-through in the `switch` statement.* 26:44 🔄 *Demonstrating the use of the `break` statement to prevent fall-through in a `switch` statement.* 27:14 🔄 *Discussing the default case in a `switch` statement and how it can be used to handle unmatched conditions or execute default code.* 27:42 🔄 *Understanding how control flow works in JavaScript, especially with break statements in loops.* 28:10 🐍 *Modern languages like Swift handle control flow differently, in contrast to older languages like JavaScript.* 29:05 🚧 *Demonstrating the importance of sensitivity when matching values and utilizing exact matches with the `===` operator.* 29:35 🔄 *Simplifying value comparison by using brackets and the equality operator (`===`), reducing the need for additional comparison operators.* 30:45 📁 *Creating a new file named "truth-and-error.js" for error and truth values.* 31:30 🖨️ *Discussing the challenge of printing on the web based on conditions.* 32:00 🔄 *Handling scenarios where an email is present, and the code runs successfully, exploring behind-the-scenes of the code execution.* 32:14 ❓ *Discussing an interesting situation where no comparison is made, and the code runs without checking the condition.* 32:28 🔍 *Demonstrating how to check for the existence of a true value within a string.* 32:43 🚫 *Handling scenarios where the email value is an empty string and ensuring the code works with different situations.* 33:10 📝 *Summarizing the types of truth and false values present in the code.* 33:23 ✔️ *Listing the values, including true, false, obvious false, zero, and handling special cases.* 33:50 🚧 *Clarifying that negative zero is generally considered as a false value, except in specific scenarios.* 34:18 🔄 *Null and Undefined are considered false values in JavaScript.* 34:47 🕵️ *When dealing with error values, pay attention to the "False Values" and "True Values" within the code.* 35:29 🚀 *Some error values may surprise you, so being subscribed to the channel helps in staying informed.* 35:42 📝 *When writing code within a string, be cautious about how zero and other values are interpreted as error values.* 35:56 🔍 *White spaces within strings can also be interpreted as error values, so be mindful of them.* 36:24 📜 *Function declarations without parameters or execution code inside are also considered error values.* 36:38 🧐 *Understanding how various values, including objects, are recognized as error values is crucial for developers.* 37:04 🤯 *Error values become more apparent when working on projects, emphasizing the importance of checking conditions effectively.* 38:30 🕵️‍♂️ *Detect if an object is empty by comparing its length property with zero after converting it to a string.* 38:58 🛠️ *Demonstrate the practical application of object detection in a scenario where you want to check if an object is empty.* 39:11 🤔 *Understand the basic principles of object detection and apply them to improve code efficiency.* 39:38 🔄 *Clarify the distinction between "==" and "===" operators when comparing values, and be aware of their implications.* 39:52 🧠 *Understand the outcomes of equality comparisons with "===" and "==" operators to handle truthy and falsy values effectively.* 41:18 🛠️ *The "nullish coalescing" operator checks specifically for null and undefined, providing a concise way to handle default values.* 41:36 📝 *Use the nullish coalescing operator (??) to assign a default value if a variable is null or undefined.* 44:14 🔄 *Avoid confusion between undefined and null by using nullish coalescing operator (`??`).* 44:58 ➡️ *Nullish coalescing operator is designed specifically for null and undefined, providing a convenient solution.* 45:40 🚧 *Handle errors effectively and assign values with a fundamental understanding of the process.* 46:06 🔀 *Differentiate between nullish coalescing operator, nullish collation operator, and ternary operator.* 47:40 🔄 *Basics of conditional statements in JavaScript are demonstrated, using operators like greater than (`>`).* 47:53 📏 *Comparison of values using conditional statements, emphasizing the importance of checking conditions correctly.* 48:08 🔄 *Introduction to conditional flow control with a basic example of checking if the price is less than 80.* 48:20 📝 *Summary of controlling code execution based on conditions and the need for control in different situations.* 48:49 🤔 *Understanding conditional execution based on various conditions like user ratings and temperature.* 51:10 🎭 *Introducing the concept of Nullish Coalescing Operator (`??`) for handling multiple function calls and addressing potential issues with direct value display.* 51:39 ⚠️ *Demonstrating the use of the question mark (`?`) and flag values to handle scenarios where functions may return `null` or `undefined`.* Made with HARPA AI
@huehuehue5762
@huehuehue5762 9 ай бұрын
finally i found a write course , i really liked your method of teaching rest of videos or js playlist directly jump on advance without any basic buildup , now i m confident about my js basics .
@abhishekchauhan1777
@abhishekchauhan1777 Жыл бұрын
I am following this series I must say this content has one of the quality content out there on the internet. Thank you Hitesh Sir for this series.
@eishanikam1368
@eishanikam1368 6 ай бұрын
06:37 Control flow is an important concept in JavaScript that allows the program to execute certain code based on conditions. 13:14 Control flow in JavaScript involves the use of conditional statements. 19:51 The scope of variables declared using the const and let keywords is limited to the block they are declared in 26:28 Control flow in JavaScript involves executing different portions of code based on conditions. 33:05 Understanding control flow in JavaScript 39:42 Falsy values in JavaScript include false, 0, negative 0, empty string, null, undefined, and NaN. 46:19 Understanding the concept of nullish coalescence operator in JavaScript. 52:50 The video covers control flow in JavaScript, including the ternary operator and if-else statements.
@Vikram_Singh_CS
@Vikram_Singh_CS Жыл бұрын
स्पॉइलर अलर्ट: यह वीडियो केवल फ्रेशर्स के लिए नहीं है, एक्सपायरीन्स के लोग भी इस मास्टर पीस से सीखेंगे। - धन्यवाद हितेश
@enghimanshu
@enghimanshu Жыл бұрын
your voice give me peace while learning.....
@mosin9708
@mosin9708 7 ай бұрын
06:37 Control flow is an important concept in JavaScript that allows the program to execute certain code based on conditions. 13:14 Control flow in JavaScript involves the use of conditional statements. 19:51 The scope of variables declared using the const and let keywords is limited to the block they are declared in 26:28 Control flow in JavaScript involves executing different portions of code based on conditions. 33:05 Understanding control flow in JavaScript 39:42 Falsy values in JavaScript include false, 0, negative 0, empty string, null, undefined, and NaN. 46:19 Understanding the concept of nullish coalescence operator in JavaScript. 52:50 The video covers control flow in JavaScript, including the ternary operator and if-else statements. Crafted by Merlin AI.
@zahid_9217
@zahid_9217 Жыл бұрын
Sir I'm currently watching your video, but I haven't finished it yet. but ley me say you something before I go ahead Thank you so much for your comprehensive explanation of truthy and falsy in JavaScript! Your video really helped me grasp these important concepts. I appreciate your clear and engaging teaching style. Keep up the great work!
@vanisharma8178
@vanisharma8178 21 күн бұрын
Today I have given interview and sir because of you javascript portion went very well ❤🎉 But I have messed up css Lgta hai aapse css padhna hoga 😅❤ thanks a lot sir for building my confidence
@suyashjain3223
@suyashjain3223 7 ай бұрын
Short summary at the end made all things clear!! Thanks!!
@deswatvlogs9924
@deswatvlogs9924 Ай бұрын
really yours approach is very different before your tutorial JS was very very difficult for me but after watching your course i am very glad to see your videos many concepts has been cleared. after this i will start your react series
@mrsoftwareengineer8688
@mrsoftwareengineer8688 6 ай бұрын
Feeling blessed that i get to know about this channel after watching lots of lots of crap content. बहुत बहुत धन्यवाद आप का hitesh sir ❤
@GunjanKhilwani
@GunjanKhilwani 9 ай бұрын
Loved your content. Thank you so much, Best Javascript series!!
@NishanShrestha-n8p
@NishanShrestha-n8p 3 ай бұрын
the way of understanding else was just wow . 😮
@ritushrivatri6865
@ritushrivatri6865 9 ай бұрын
Thank you for exceptional efforts in simplifying JavaScript 😇😇
@javedahmadi1617
@javedahmadi1617 Жыл бұрын
Love from belguim brother love the way your explaining best of luck 👌👌👌👌👌👌👌🕳🕳
@SanaulAnsar
@SanaulAnsar Жыл бұрын
sir you are giving best of yours and this type of tutorials will help for those types of students who all are learning code through free and social resources.
@Hammad-wp8dm
@Hammad-wp8dm 5 ай бұрын
Bhai saab ma kehta hoo apna tou dil jeet lya sir g . Lub you ho gya.
@VikashSingh-hc6zo
@VikashSingh-hc6zo Жыл бұрын
wow maja a gya 52 mins bina kisi skip k dekha or ek dam clear samagh a gya thanks a lot sir ! i will definately text you whenever i gets the job to express my appriciation towards you and your work "'kyunkin jab tak padne m maja nhi ayega to seekhenge kese "
@chaiaurcode
@chaiaurcode Жыл бұрын
Sahi baat. ☕️❤️
@bilalmarwat2641
@bilalmarwat2641 10 ай бұрын
@@chaiaurcode sir mere aik Question hai
@jaykhatri9047
@jaykhatri9047 9 ай бұрын
sir ka pdhane ka trika such me alg hai faltu ki baat to krte hi nhi hai sir thank you so much sir
@shreyakolekar4059
@shreyakolekar4059 Жыл бұрын
Thank you Sir! Now I understand better how Execution of functions happens. Also the demo of call stack on browser was very helpful.
@harshitdixit5409
@harshitdixit5409 11 ай бұрын
hiii
@BLACKWIZX
@BLACKWIZX Ай бұрын
very nice video sir ,, i can't say in words how much i am addicted to this series
@SSGROUPTESTINGLABORATORY
@SSGROUPTESTINGLABORATORY 5 ай бұрын
Sir ap bahot hi imandari se padhate hai thankyou ❤
@gohilpratikgohilpratik5547
@gohilpratikgohilpratik5547 5 ай бұрын
sir !! confusion at 10:05 to 10:20 [ temerature === 41 , "===" strict eqal to also cheak datatypes ?? then how possible temperature===41 ???[ please anyone can explain mee i am confused so muchh !!!
@faizanarif9799
@faizanarif9799 Жыл бұрын
Long video ka ek alg hi mja h next level Thank you sir for too much effort
@surajkumar-wz1br
@surajkumar-wz1br Жыл бұрын
🙏🙏 thank you so much for your precious Video(Javascript Series) 🙏🙏😃 Maazaa aa rha hain !
@vikashpandey3055
@vikashpandey3055 11 ай бұрын
unbelieveable teaching way that i have see till now
@hetalvachhani1178
@hetalvachhani1178 Жыл бұрын
Thank you sir for making javascript series in hindi i hope the best series in youtube...
@navajiskhan9305
@navajiskhan9305 Жыл бұрын
Please start a simple project using javascript...🥰🥰 Jitna pd liya h utna to relate kr paye atleast humlog ki how javascript use in project 🥺🥺
@chaiaurcode
@chaiaurcode Жыл бұрын
Aadha gyaan leke project ke chakrvyuh me mt utariye
@navajiskhan9305
@navajiskhan9305 Жыл бұрын
@@chaiaurcode hanji bilkul jaisa aap kahen
@yupp_harish3936
@yupp_harish3936 Жыл бұрын
​@@chaiaurcodeproject kab aayenge
@BitFire007
@BitFire007 9 ай бұрын
"Chai aur Code, you're the unsung hero of the JavaScript learning community. You rock!"
@sagarbhavel8266
@sagarbhavel8266 Жыл бұрын
you are good teacher and clear all the topics for depth.
@cyberwarrior_
@cyberwarrior_ 5 ай бұрын
function getFee(isMember) { return isMember ? '$2.00' : '$10.00'; } console.log(getFee(true)); // Expected output: "$2.00" console.log(getFee(false)); // Expected output: "$10.00" console.log(getFee(null)); // Expected output: "$10.00"
@TheSilentObserver30
@TheSilentObserver30 11 ай бұрын
1:37 am Hitesh Sir javascript with smile on face and calmness in voice + Lofi study music in background .I don't expect more than this .❤❤❤❤
@chaiaurcode
@chaiaurcode 11 ай бұрын
😊☕️🤗
@GamingWithParamYT
@GamingWithParamYT Жыл бұрын
Amazing Video Sir Ekdum Full Clarity and quality ke sath
@thetech17
@thetech17 Жыл бұрын
Best video on intenet for javascript
@codenoobdev
@codenoobdev Жыл бұрын
boht maza aaya.. too much to learn... do make long videos :)
@AhmedRehan01
@AhmedRehan01 8 ай бұрын
short summary wala formula best ye methodology sb videos mein hona chahiye✅
@ranasagar699
@ranasagar699 Жыл бұрын
Guru ji aapki video se padhne main maja hi or hai. Aisa lgta hai ki bas padhte rhu😌😌
@chaiaurcode
@chaiaurcode Жыл бұрын
bs to 1 aur aisa hi video ready kr rha hu, Sunday ko laate h
@ranasagar699
@ranasagar699 Жыл бұрын
@@chaiaurcode love u guru ji❤
@Rajveer__singhhhh
@Rajveer__singhhhh Жыл бұрын
Hats off sir me to Dhanya ho gya aapke lecture dekh ke ❤
@maha33612
@maha33612 Жыл бұрын
So much understanble content you make ! thank you for making js in depth with understandable with your teaching way 🌻_🌻 Sir please ap react js ki bi series bna dijiee
@chaiaurcode
@chaiaurcode Жыл бұрын
Krte h prabandh
@bilalshahid5118
@bilalshahid5118 4 ай бұрын
best course ever on youtube👍
@RameshChauhan-gp7pe
@RameshChauhan-gp7pe 13 күн бұрын
Teaching style greate sir❤❤❤
@Meetsharma1995
@Meetsharma1995 11 ай бұрын
Txs u so much boss and your grand hug and txs apki wja se bhot log jo pese ni dy pate in sub ki study ke liy or ap un sub ke liy itna efect dal rhy uske liy so txs 👏👏🥰🥰
@manishmaurya4346
@manishmaurya4346 4 ай бұрын
sir aap teacher best ho bahot maja aa rha hai reading karne mai
@ranasalmankamrankhan4936
@ranasalmankamrankhan4936 Жыл бұрын
yr ap kamal banday ho hats off love from pakistan ❤
@nakamoto007
@nakamoto007 Жыл бұрын
Couldn’t ask for a better video
@chaiaurcode
@chaiaurcode Жыл бұрын
Thanks
@shahzaibali4645
@shahzaibali4645 Жыл бұрын
sir, your chanel is very best for beginner student.
@MelodyMaster914
@MelodyMaster914 Жыл бұрын
Sir your way of teaching is truly amazing ❤❤
@dhavalsinh_07
@dhavalsinh_07 5 ай бұрын
Thank you so much Sir, for the amazing and helpful content 😇😇
@anupammishra2891
@anupammishra2891 8 ай бұрын
awesome video sir maja aa gya padh ke app se java script
@nikhatansari3310
@nikhatansari3310 Жыл бұрын
Thank you so much sir 😊, sir node js ki bhi playlist banaiye please
@anjalisinghai3948
@anjalisinghai3948 Жыл бұрын
sir, your way of teaching is amazing 🤩
@yupp_harish3936
@yupp_harish3936 Жыл бұрын
Sir you are legend..Just learning from your series..hope that ill master Js
@muditkhanna8164
@muditkhanna8164 Жыл бұрын
Your course is well organised as per today's era.
@Kunalmpawar
@Kunalmpawar 5 ай бұрын
padhte padhte chai hi thandi ho rahi hai guruji 😅
@shivaniverma4266
@shivaniverma4266 8 ай бұрын
maze aaagye mast lecture val1 = null ?? 10 ?? 50 yeh acha concept thaaa
@The_Developer_
@The_Developer_ Жыл бұрын
Best tutorial of js over KZbin
@psyyhill
@psyyhill Жыл бұрын
Love these long videos! Too much to learn! Time to get back to chai and code!! 😁
@RajSingh-yh2nw
@RajSingh-yh2nw Жыл бұрын
hitesh sir i have a doubt at 44:42 you changed var1 to val1 and output changed to 15 earlier it was undefined how did that happened sir ? It was bit confusing and surprising
@HIMANSHUPAHAL-f4c
@HIMANSHUPAHAL-f4c Жыл бұрын
search on google
@yupp_harish3936
@yupp_harish3936 Жыл бұрын
bro u got solution???
@RajSingh-yh2nw
@RajSingh-yh2nw Жыл бұрын
@@yupp_harish3936 nah still figuring out
@himalicoder
@himalicoder Жыл бұрын
var1 was not defined because earlier val1 was initialized. So that, var1 is undefined because we have set value for val1 either to be undefined or 15 while var1 is not set till console.log
@decoder_pankaj
@decoder_pankaj 11 ай бұрын
Loving this series thank you sir 🎉🎉 #15DayJavaScriptChallenge
@Harsh-w1i
@Harsh-w1i Жыл бұрын
Awesome content, keep the good work coming. Thanks..
@PRANJULBAJPAI22BCE837
@PRANJULBAJPAI22BCE837 8 ай бұрын
sir why output of let v; v=undefined??null console.log(v); is --> null and output of let v; v=null??undefined console.log(v); is --> undefined
@SyedAsif08
@SyedAsif08 Жыл бұрын
absolutely enjoying this javascript course ,,,,,,,,,,,,,,,,,,,,,,,,,,
@sahdevdomadiya8665
@sahdevdomadiya8665 10 ай бұрын
Thanks sir, ase ho in-depth me samjaiye
@nikhillugade6190
@nikhillugade6190 5 ай бұрын
Chai aur concept clear❤
@Abhay_Pandey_1
@Abhay_Pandey_1 4 ай бұрын
Best video of this js series
@ironcoding2024
@ironcoding2024 8 ай бұрын
@chaiaurcode which theme is this 10:30
@muhammadyasir2275
@muhammadyasir2275 7 ай бұрын
you nailed man,, from karachi
@tech_channel110
@tech_channel110 Жыл бұрын
very very well explained sir
@a_maxed_out_handle_of_30_chars
@a_maxed_out_handle_of_30_chars Жыл бұрын
concise and clear, thank you :)
@techabl
@techabl 5 ай бұрын
Great I like one mistake you saying if break comment then also accept default then your statement wrong not going to default 28:15
@techabl
@techabl 5 ай бұрын
yes, you are correct if not added and break then going to default 💯
@TirthPrajapati-by9mu
@TirthPrajapati-by9mu Жыл бұрын
The way of you are teaching is awesome ❤❤❤
@jaykhatri9047
@jaykhatri9047 9 ай бұрын
youtube ki best series hai siir
@aryanpatelyt7562
@aryanpatelyt7562 3 ай бұрын
Thank you very much sir !! ❤❤
@babarshabbir2554
@babarshabbir2554 7 ай бұрын
"Master JavaScript control flow with ease! This tutorial covers if-else, switch, loops, and more. #concise #clear"
@savesoilsavegenerations6399
@savesoilsavegenerations6399 Жыл бұрын
Best tutorial in control flow for java script. :)
@chetanaggarwal4488
@chetanaggarwal4488 7 ай бұрын
Great initiative ❤
@skill.spirit
@skill.spirit Жыл бұрын
we love long video in your way of teaching
@AniketKhandare-gk5cy
@AniketKhandare-gk5cy Жыл бұрын
Thanks @Chai aur code ,@Hitesh Choudhary SIR .....
@bulu-io
@bulu-io Жыл бұрын
34:30 sir i think document.all is also considered to be falsy....BTW great lecture from u sir.....love it a lot
@vivekbhakhri735
@vivekbhakhri735 11 ай бұрын
Awesome!! not sure why comments are less but it is what it is lol. I would like to pay something for this as well
@sawerasajid4309
@sawerasajid4309 11 ай бұрын
sir thanku for the truthy and falsy concept i was always confused of this
@sagarbhavel8266
@sagarbhavel8266 Жыл бұрын
this video it's really Helpful 🙂
@FilmFinds01
@FilmFinds01 6 ай бұрын
Supporting you hitesh bhai
@lavish9198
@lavish9198 Жыл бұрын
I learnt more from this channel than in school
@DeepakKumar-g3m7p
@DeepakKumar-g3m7p Ай бұрын
wonderful explanation....
@s-qc9ns
@s-qc9ns 24 күн бұрын
Nullish Coalescing operator '??' aur Short circuit operator '||' same hai kya?
@kuntalojha
@kuntalojha 7 ай бұрын
Thank you a lot sir for making this wonderJSl js playlist video @chaiaurcode .
@touristsworld349
@touristsworld349 11 ай бұрын
I am telling you this guy is providing Premium content for free of cost Just subscribe to his channel and watch this Javascript series. Love and Respect from Pakistan.
@battle_royale_gamer
@battle_royale_gamer 5 ай бұрын
sir there is also not operator for condition if(!array){return true } like this which converts true to false so please sir add this also
For loop with break and continue in javascript | chai aur #javascript
24:31
Pick these tech to make or destroy your tech career
15:52
Chai aur Code
Рет қаралды 46 М.
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
How does javascript execute code + call stack | chai aur #javascript
26:12
Every React Concept Explained in 12 Minutes
11:53
Code Bootcamp
Рет қаралды 869 М.
How I would learn to code (If I could start over)
13:14
CodeWithHarry
Рет қаралды 239 М.
DevOps Complete Guide for 2025
18:10
Apna College
Рет қаралды 180 М.
8 Rules For Learning to Code in 2025...and should you?
12:59
Travis Media
Рет қаралды 94 М.
High Order Array loops | chai aur #javascript
34:12
Chai aur Code
Рет қаралды 177 М.
2.5 Years Experienced Best JavaScript Interview
2:03:06
Anurag Singh ProCodrr
Рет қаралды 334 М.
How to build logics in programming
10:04
Chai aur Code
Рет қаралды 455 М.
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН