Loops in Javascript | Web Development Course | Javascript- Lecture 11

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

Notes of this Lecture:
Рекомендации по теме
Комментарии
Автор

Aman Sir's JavaScript Course like: abhi hum zinda hai 😂😂

Raj-izuz
Автор

18:14 This was so Good
But our Favorite is "Aman"

AbhayFaldu
Автор

Odd number can also be done simply like:
for (let i= 1; i<10 ; i = i+2) ;
console.log (i)

arth_chart
Автор

1.When we take i >= 0 here the = operator tells that if the value of i is 0 and it is equal to zero then we have to print the i once more. The > operator changes the case that 0 is not greater then 0.

Asta
Автор

Thank you for making this video available on time! All the best to all the team :)

amanchourasia
Автор

Aise hi jaldi jaldi upload kor dijiyee...full course please upload soon

swapnendupan
Автор

12:51 Bcoz j = 11 after increment and conditions become false due to j < 10 is a condition but do while loop must execute atleast one time whether condition true or false.

punitpatel
Автор

13:06=> Actually "do" it will execute the statement at-least one time then it will check for the condition.

Akramkhan-brrt
Автор

love you brother, your way of teaching is very nice that it made me easy to absorb loops

shilpachauhan
Автор

*Please make Course on Competitive Coding in C++....*

AmanKumarSinhaOfficial
Автор

Thanks for uploading the video actually I was waiting for this...❤️❤️and thanks to you Aman sir for making this wonderful web development series for us....love you so much bruh❤️❤️

dikshamittal
Автор

you have to insert a number values instead of sentences or words
in examples, so it is better to understand right .!!

dhruvaparmar
Автор

let i=0;
while(i<10){
console.log("namaste")
i++
}

hrsings
Автор

00:12:58 kyunke 10 <10 is false but kyun ke do while loop ek bar lazmi execute hoga is liye woh namaste world print karde ga

sameerkun
Автор

I literally thought it will come today and surprisingly, it

cubingwithabhinav
Автор

because j is equal to 10 and condition is "j<10 " to run code untill j becomes smaller than 10.

using._name
Автор

Because do while loop runed at least once. So, Namasta world printed at once.

ysitpxp
Автор

Because typing equal will include 11'th digit '0' in loop. because >= means greater than and equal.

using._name
Автор

The 2 loop types shown in the end are so interesting. I wish C++ had them.

ibtehaj
Автор

10:25 Bcoz when value of i become 0 that condition also become true so then while loop body also execute at that time 11th time.

punitpatel