Nested IF ELSE Statement in JavaScript | The Complete JavaScript Course | Ep.14

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

Have any doubts? Join this Telegram group and ask your question. You can also share the projects that you make in this group.

📖 Chapters
00:00 - Introduction
01:19 - Go Through the Starter Code
02:46 - Why do we Need Nested IF Else?
07:31 - Nested IF Else Statement in Depth
16:56 - Conclusion

Social Media

Music by geoffharvey from Pixabay
Рекомендации по теме
Комментарии
Автор

Episode 14 successfully completed ❤😂
Very Nice Sir Aapki Video Ne Coding Ki journey easy bana diya
Thank you ❤❤

rmworld
Автор

after watching your videos, finally i am able to create programs. My past 2 days progress is i have completed 10 programs with accuracy 90% Thankyou

MuhammadAwaisYT
Автор

Thank you so much for increasing our knowledge

Hemant_here
Автор

NICE sir, ultimate & yes episode 14 is done .

kshitizgarg
Автор

Day 6: video 15 completed thank you sir making such great video😊

Collecting_one_piece_fan
Автор

Episode 14 completed bhaiya. Aaj ka JS learning khatam . Kal milte phirse bhaiya ji.

adityasinghh
Автор

Thanks for Bhaiya
Mai drive hu mai apna job change kar na chata hu .
Q ki drive line mai kio growth nah aur na respect hai

arsaalchoudhary
Автор

Brother course kb tk complete ho ga koi estimation?

salarrj
Автор

Sir print hi ho rha h nested if ka console

sweetysingh
Автор

`// condition for checking College Student or Not
// used nested If Else loop for checking different conditions
else if( userAge >= 18 && userAge <= 24 ) {
console.log(`${userName} is a College Student`);
if (userAge >= 19) {
console.log(`${userName} is above 19`);
if (userName.length > 5) {
console.log(`Username is long`);
} else {
console.log(`Username is short`);
}
} else {
console.log(`${userName} is below 19`);
if (userName.length > 5) {
console.log(`Username is long`);
} else {
console.log(`Username is short`);
}
}
}`

_parthnarnaware