On your request, I have revamped the channel membership and added more levels. Click the join button to check out more - ruclips.net/channel/UCeVMnSShP_Iviwkknt83cwwjoin
harry i am 26 years old electrical engineer but your channel reignited my interest in programming web development...i am forever grateful to you and it amazes me that people like you really exist in this world ....Bless you mannn i became your biggest fan.
quick tip - === and !== :- checks type also if type is same then it will proceed further and if value are same and type are not same answer will be false whereas == and != only checks value and if type is different and value are same answer will be true
After physicswallah from passing 12th in graduation you are my new guide and teacher to become successful and to get achieved what i want sir thank you for both providing all content online for educating us.😊😊😊😊😊😊
I think this JavaScript course is going be the best version JavaScript course ever uploaded in your playlist. Harry Bhai is improving his contents day by day🔥🔥🔥🔥
Thankyou for such wonderful Basic to advance course. You are enhancing Programming skills of Entire Community of Young programmers, everyone I see or talk , refers to your videos. Once again thanks
Harry bhai, apjab ye bolte ho na ki "tum sochoge ki kya bacho wali cheeze padha raha hu but will raise the bar like anything" Honestly Harry bhai apka sabse zayada crowd he wo log hain jo sab kuch starting se seekhna chahte hai. Aap bilkul sahi ja rahe ho bhai, dil se Thank you:)
Harry bhai you are such a nice mentor and providing such a amazing course for free. You are legend of RUclips education industry. East West Harry bhai is best🔥🔥🔥
You are the best coding tutor on entire youtube ! I learnt C++ from you and JS is quite similar to it. It is easy and i am getting the concepts faster than the c++. Thankyou for providing such a valueable course for free. #HarryArmy #Lovefromheart💕
Harry Bhai you deserves the billions of subscribers. Best coder ever seen in my life .Thanks for your great and fabulous ultimate course. Love from Iran.
line 12: 11 line 13: 11 (actually it has became 12) line14: 11 line 15: 11 (actually it has became 10) line 16: 10 line 17:10 (actually it has became 9)
Harry Bhai Amazing Tutorial on Operators & Expressions..👌👌👌 a=10; ++a=11; a++=11; (Act. Val. of a++=12) --a=11; a--=11;(Act. Val. Of a--=10) a=10; a--=10;(Act. Val. of a--=9) 🙂🙃😊
Thanks bhaiya for the amazing course, i hope my outputs are correct🤞🏻: ++a= 11 a++=11. (And actual a=12) --a= 11 a-- = 11 (and actual a =10) a= 10 a--=10 (and actual a = 9)
I must say thank you Harry ❤❤❤❤ 🙏you are teaching so well in the comparison to paid websites.. i am also persuing fullStack web development course from almabetter... But i used to watch your videos .. So that i can make my worth 😢😢
8:40 line 12: output: 11 line 13: output: 11 line 14: output: 11 line 15: output: 11 line 16: output: 10 line 17: output: 10 This JavaScript tutorial is helpful/amazing! Thanks Harry Bhai!
[6].I have seen this lecture today.I have completely understood all the concepts you explained in class. Your teaching method was very simple and effective, which made me understand everything easily. I am very grateful to you for your guidance and hard work. Your student, [Ayush ]...🫡❤️ 7TH NOVEMBER 2024...
Thank bro for this js tutorial I have learnt a lot from you in this single year, c cpp html css tailwind python these are the languages which I learnt this year Keep making such videos bhai, and get more little brothers like me. Always supporting you bhaiya Subscriber from Maharashtra
A++ : use the actual value then add 1 ++A : add the value then use ++a = 11 a++ = 11 - - a = 11 a - - = 11 a = 10 a - - = 10 all question answer is 11 the a is printing 10 the i last minus 1 in 11 is 10 thanks me later it tooks me 2 days to learn these operators thanks harry bi
08:30 console.log(++a) -->a becomes 11 console.log(a++) -->a prints 11 and becomes a=12 console.log(--a) -->a which was 12 becomes a=11 and prints a=11 console.log(a--) -->a prints 11 and becomes a=10 console.log(a) -->a prints the current value i.e a=10 console.log(a--) -->a prints the current value a=10 and becomes a=9 in the memory
You are amazing bhai. The hardwork and your precious time that you put for us without charging a penny is really appreciable. Thanks bhai for all the good playlist you have provided to us. 🙏❤
thank you sir for teaching us coding on you tube for free ,this is best javascript course , i know this is after very much time but the legends teaching never gets waste and did you where i know about you.Chatgpt recomeded you me as a best coding teacher in india
NOTE : A++ : first use the actual value then add 1. (example, a = 10, console.log(a++), output: 10 but later whenever console.log mentions a then it will add 1 automatically , 10+1 = 11, whether it's - - a, a - - etc.) ++A : first add the value then use. like (10+1= 11) let a = 10 let b = 4 console.log("a + b =", a + b) output: a + b = 14 console.log("a - b =", a - b) output: a - b = 6 console.log("a * b =", a * b) output: a * b = 40 console.log("a / b =", a / b) output: a / b = 2.5 console.log("a ** b =", a ** b) output: a * b = 10,000 console.log("a % b =", a % b) output: a % b = 2 console.log("++a =", ++a) output: ++a = 11 console.log(" a++ =", a++) output: a++ = 11 NOW a is 12 because of the a ++ . So, it means a = 12 (for now because of a ++) when we type console.log("- -a =", - - a) then it goes like this (12-1 = 11) and we get output: - - a = 11 [ console.log("- -a = ", - - a) output: - - a = 11 [12-1=11] ] console.log("a - - =", a- -) output: a - - = 11 console.log(" a = ", a) output: a =10 [because of a - -, it becomes 11-1 = 10 ] now the a is 10 because in the previous section we have got 10 console.log ("a - - =", a- -) output: a - - = 10 Harry Bhai I've Solved It. Lets See Whether it's right✅✅ or wrong ❌❌
I truely appriciate your 'Yakka' on bringing an exellent content on JavaScript. Keep it up bro. By the way, your funny mood while teaching is praiseworthy and makes your audience feel lighter while learning a hard subject. Thanks a lot.
8:33 Answer of the problems is: Line no 12 output is = 11 Line no 13 output is = 11 Line no 14 output is = 11 Line no 15 output is = 11 Line no 16 output is = 10 Line no 17 output is = 10 Thank You for this awesome course, Harry Bhai
Hello Harry, I have also seen your last JavaScript playlist "JavaScript Tutorial in Hindi". So what are you going to add to this new playlist? All your playlists are very simple and good. let it go, Brother.👍👍👍
Kya bolu me is bande ke baare me yr ... Harry bhai ko salute hai .. itna free me mehnat kon karta hai padhane me .... Aaj ki tareek me har koi youtube kuch saal tak gyaan pelta hai uske baad apne courses launch karke paise kamata hai ... Or ek taraf Harry bhai ko hi dekhlo ...🤔👏👏
Hey Harry Bhai, I just wanted to express my heartfelt gratitude for all the amazing courses you've been providing on your channel. I've already completed 6 courses (C, C++, DSA, HTML, Web development, React) and I'm now diving into JavaScript. Your teaching style is fantastic, and it's made my learning journey so much more enjoyable. Sending love and thanks from Nepal! Keep up the fantastic work! 8:35 -> console.log("++a = ", ++a); //Output: 11 console.log("a++ = ", a++); //Output:11 console.log("--a = ", --a); //Output:11 console.log("a-- = ", a--); //Output:11 console.log("a = ", a); //Output:10 console.log("a-- = ", a--); //Output:10
++a = 11 a++ = 11 - - a = 11 a - - = 11 a = 10 a - - = 10 Harry bhaiya mere ko reply chaiye, aapne bola comment krne ko maine answer bina dekhe comment kia hai to ab reply do mujhe aur ha 8 months bad bhi apki playlist puri dekhra hu bhot mza a rhi mast padhate ho aap may we both succeed more in life
bhai ek to aapki volume bht sahi hai , mera asus ka laptop hai usme speakers bht dheeme and mostly all laptops me bht dheemi awaaz, one of the reasons why i like watching your videos and prefer from other youtubers
console.log("Length and breadth of rectangle are 5 and 7 respectively. write a program to calculate the area and primeter of the rectangle.") let l = 5; let b = 7; console.log("area") console.log("l * b = ", l*b)
Harry bhai, 16:30 kyu samajh me nahi ayga sabko yar ?aisi seej to Ek kisika bhi tutorial Dekhte hi samajhme aa jata hai. For example ek doctor ko programming to directly nahi aa sakta naa😂😂😂 I love your hardworks sir. But there is something called over explanation which is not necessary. I Salute and thanks for the 39.40 hours of javascript course. BTW you are my favourite teacher❤❤❤
12:31 😅😂, jokes aside: This course is really helpful thanks a lot, guys we really need to support him more as he spends lots of time writing notes with hands for us and present it for free!
EDIT: a = 45 in my case 8:14 - line 12 - 17 all in one JS file with the same variables: ++a = 46 a++ = 46 --a = 46 a-- = 46 a = 45 a-- = 45 all in separate JS files: ++a = 46 a++ = 45 --a = 44 a-- = 45 a = 45 a-- = 45
++a = 11 --> ++ will increment value of a by 1 a++ = 11 --> first it will print 11 then increment value of a to 12 --a = 11 --> previous value was 12 so after decrement it is 11 a-- = 11 --> it will still print 11 but after printing it will decrement value of a to 10
8:31 - Answers (NO CHEATING FOR SURE) - Line 7: 14 - Line 8: 6 - Line 9: 2.5 - Line 10: 10000 - Line 11: 2 - Line 12: 11 - Line 13: 11 - Line 14: 11 - Line 15: 11 - Line 16: 10 - Line 17: 10
a + b = 14 a - b = 6 a * b = 40 a ** b = 10000 a / b = 2.5 a % b = 2 ++a = 11 a++ = 11 --a = 11 a-- = 11 a = 10 a-- = 10 I am beginner .... Most PowerFull Video For JavaScript
On your request, I have revamped the channel membership and added more levels.
Click the join button to check out more - ruclips.net/channel/UCeVMnSShP_Iviwkknt83cwwjoin
bhai CWH mean hota kya hai
@@Grand_Master360 code with harry
@CodeWithHarry members ship me alag se class loge kya
Koe contact number mil sakta ha kya
Abhs
ap laravel ka b ek course banao
The best javascript course in RUclips. And it's FREE :DDD
I have also followed your channel's earlier video of JavaScript but every time I get to learn something new like found in it Thank you 😊
it sure is heheheeh :p
Yes, I Agree
Bhai kya aap 2 - 3 video upload kr sakte h plz sir do 😊😊
@@DoDoHiro Bhai ye reply section hai comment box nahi
harry i am 26 years old electrical engineer but your channel reignited my interest in programming web development...i am forever grateful to you and it amazes me that people like you really exist in this world ....Bless you mannn i became your biggest fan.
is electrical engineering bad ?? I have also taken it, cause i m not getting cse .
@@karthik4519 you should go for computer science
@@nomihaider96 it's late now 🥲 I got electrical in IITR
And last date of IIST aerospace, NSIT CSE are gone
@@karthik4519 go for CS wait next year am telling you with experience
Code Backup Repository: github.com/CodeWithHarry/ultimate-js-course-youtube
Thank You Sir!!!
Hello Harry,
Now replit is not Fully free anymore. Is there any good js compiler which is free
Vs code
quick tip - === and !== :-
checks type also if type is same then it will proceed further and if value are same and type are not same answer will be false
whereas
== and !=
only checks value and if type is different and value are same answer will be true
After physicswallah from passing 12th in graduation you are my new guide and teacher to become successful and to get achieved what i want sir thank you for both providing all content online for educating us.😊😊😊😊😊😊
me too
Me too
@@ajoychand8998 toh iit mel gyi kya
12 th in graduation how??
@@vves1415 😆😆😆 alag nasha hai bhai woh
I think this JavaScript course is going be the best version JavaScript course ever uploaded in your playlist. Harry Bhai is improving his contents day by day🔥🔥🔥🔥
Thankyou for such wonderful Basic to advance course. You are enhancing Programming skills of Entire Community of Young programmers, everyone I see or talk , refers to your videos. Once again thanks
Harry bhai, apjab ye bolte ho na ki "tum sochoge ki kya bacho wali cheeze padha raha hu but will raise the bar like anything"
Honestly Harry bhai apka sabse zayada crowd he wo log hain jo sab kuch starting se seekhna chahte hai.
Aap bilkul sahi ja rahe ho bhai, dil se Thank you:)
A++ : first use the actual value then add 1.
++A : first add the value then use.
Got it sirrr
Harry bhai you are such a nice mentor and providing such a amazing course for free. You are legend of RUclips education industry. East West Harry bhai is best🔥🔥🔥
You are the best coding tutor on entire youtube ! I learnt C++ from you and JS is quite similar to it. It is easy and i am getting the concepts faster than the c++.
Thankyou for providing such a valueable course for free.
#HarryArmy #Lovefromheart💕
Harry Bhai you deserves the billions of subscribers. Best coder ever seen in my life .Thanks for your great and fabulous ultimate course. Love from Iran.
ULTIMATE VIDEOS! PLEASE DON'T STOP MAKING VIDEO LIKE THESE ..
REALLY HELPING A LOT😄😄
Sir your the best teacher ever. No words to explain the respect I have for you
Best RUclips Channel For Programming Beginners and Advanced Programmer Guy ! Thank You Harry Bhai For The Amazing Video🙏
line 12: 11
line 13: 11 (actually it has became 12)
line14: 11
line 15: 11 (actually it has became 10)
line 16: 10
line 17:10 (actually it has became 9)
Ha but vo agli baar a print krne pe dikhega vaise 10 hi print hoga
@@Vikram.201ji haan
Harry Bhai Amazing Tutorial on Operators & Expressions..👌👌👌
a=10;
++a=11;
a++=11; (Act. Val. of a++=12)
--a=11;
a--=11;(Act. Val. Of a--=10)
a=10;
a--=10;(Act. Val. of a--=9)
🙂🙃😊
Thanks mere bhai tumne comments me likha to pura samjh gya 😂😂
@@SACHINYED Ha yr bhai 😂😂😂
Waha video nahi smjha par yaha ittu sa comment smjh gya bina explanation ke😂
Thanks bhaiya for the amazing course, i hope my outputs are correct🤞🏻:
++a= 11
a++=11. (And actual a=12)
--a= 11
a-- = 11 (and actual a =10)
a= 10
a--=10 (and actual a = 9)
Nice!
@@futurexa ❤️❤️
my answer also be same .
How come val of a= 12 before printing a. ? Pls explain i don't get it.
@@murtuzaahmed5042not actually nine ..he is just assuming brother
a+b = 49
a-b = 41
a*b = 180
a/b = 11.25
a%b = 1
a**b = 4100625
a++ = 45
a = 46
++a = 47
a = 47
a-- = 47
a = 46
--a = 45
a = 45
Thanku sir 😊 For valueble course .
I must say thank you Harry ❤❤❤❤ 🙏you are teaching so well in the comparison to paid websites.. i am also persuing fullStack web development course from almabetter... But i used to watch your videos ..
So that i can make my worth 😢😢
Its too amazing to grasp the concepts of JS.. i just loved the way you teach.. really, appreciated 🙌🏻🙂
6 Videos of life Changing JavaScript Course
Thanks HARRY Bhai !! 💐💐🥰🥰
8:40
line 12: output: 11
line 13: output: 11
line 14: output: 11
line 15: output: 11
line 16: output: 10
line 17: output: 10
This JavaScript tutorial is helpful/amazing!
Thanks Harry Bhai!
👍👍👍👍👍👍
Bro kese aaya
Mujhe smj nhi aaya
@@shivprakash001 bhai video dobara dekho and focus while watching video. Best of luck
@@shivprakash001 Uske thore aage unhonne bataya hai
let assign = 2;
assign += 5
console.log("Assign is now", assign)
assign -= 5
console.log("Assign is now", assign)
assign *= 5
console.log("Assign is now", assign)
assign /= 5
console.log("Assign is now", assign)
[6].I have seen this lecture today.I have completely understood all the concepts you explained in class. Your teaching method was very simple and effective, which made me understand everything easily. I am very grateful to you for your guidance and hard work. Your student, [Ayush ]...🫡❤️
7TH NOVEMBER 2024...
Thank bro for this js tutorial
I have learnt a lot from you in this single year, c cpp html css tailwind python these are the languages which I learnt this year
Keep making such videos bhai, and get more little brothers like me. Always supporting you bhaiya
Subscriber from Maharashtra
Bro first master one then learn the other. Warna confuse aise hoge pata nahi chalega code kya likhu aur kiska (speaking from experience).
you are the bst harry bhai aap asa smjhate ho jsa to hmare sir bhi nhi smjhte thnks ase hi aap video hmare lye bnte rho or hmari help krte rho
A++ : use the actual value then add 1
++A : add the value then use
++a = 11
a++ = 11
- - a = 11
a - - = 11
a = 10
a - - = 10
all question answer is 11 the a is printing 10 the i last minus 1 in 11 is 10
thanks me later it tooks me 2 days to learn these operators thanks harry bi
08:30
console.log(++a)
-->a becomes 11
console.log(a++)
-->a prints 11 and becomes a=12
console.log(--a)
-->a which was 12 becomes a=11 and prints a=11
console.log(a--)
-->a prints 11 and becomes a=10
console.log(a)
-->a prints the current value i.e a=10
console.log(a--)
-->a prints the current value a=10 and becomes a=9 in the memory
Thanks bhai.
You are amazing bhai. The hardwork and your precious time that you put for us without charging a penny is really appreciable.
Thanks bhai for all the good playlist you have provided to us. 🙏❤
I am in 5th class but by your tutorials I have learnt Python, HTML,CSS and now I am learning JS Thank you sir
my son
kha jaa humari jobs tu bhi
@@theflash34529 🤣🤣🤣
bahar jake khel, maze kar, abhi itni tension mat kar future leke kyuki jobs ki waise bhi kami padegi future me
Yappa😅
thank you sir for teaching us coding on you tube for free ,this is best javascript course , i know this is after very much time but the legends teaching never gets waste and did you where i know about you.Chatgpt recomeded you me as a best coding teacher in india
NOTE : A++ : first use the actual value then add 1. (example, a = 10, console.log(a++), output: 10 but later whenever console.log mentions a then it will add 1 automatically , 10+1 = 11, whether it's - - a, a - - etc.)
++A : first add the value then use. like (10+1= 11)
let a = 10
let b = 4
console.log("a + b =", a + b)
output: a + b = 14
console.log("a - b =", a - b)
output: a - b = 6
console.log("a * b =", a * b)
output: a * b = 40
console.log("a / b =", a / b)
output: a / b = 2.5
console.log("a ** b =", a ** b)
output: a * b = 10,000
console.log("a % b =", a % b)
output: a % b = 2
console.log("++a =", ++a)
output: ++a = 11
console.log(" a++ =", a++)
output: a++ = 11
NOW a is 12 because of the a ++ . So,
it means a = 12 (for now because of a ++)
when we type console.log("- -a =", - - a)
then it goes like this (12-1 = 11) and we get
output: - - a = 11
[ console.log("- -a = ", - - a)
output: - - a = 11 [12-1=11]
]
console.log("a - - =", a- -)
output: a - - = 11
console.log(" a = ", a)
output: a =10 [because of a - -, it becomes 11-1 = 10 ]
now the a is 10 because in the previous section we have got 10
console.log ("a - - =", a- -)
output: a - - = 10
Harry Bhai I've Solved It. Lets See Whether it's right✅✅ or wrong ❌❌
I truely appriciate your 'Yakka' on bringing an exellent content on JavaScript. Keep it up bro. By the way, your funny mood while teaching is praiseworthy and makes your audience feel lighter while learning a hard subject. Thanks a lot.
I hope to do yakka on this course
8:33 Answer of the problems is:
Line no 12 output is = 11
Line no 13 output is = 11
Line no 14 output is = 11
Line no 15 output is = 11
Line no 16 output is = 10
Line no 17 output is = 10
Thank You for this awesome course, Harry Bhai
We need a video series on mathematics needed for programming
Respect for brother's yakka. He handwrites all the notes in his notebooks, takes picture of all the pages, turns it into a pdf, and then teaches us.
Your teaching style has improved a lot
Mind blowing course ❤️♥️
CAN I BEGIN THIS JS COURSE WELL SINCE I DON'T HAVE ANY PRIOR KNOWLEDGE OF PROGRAMMING?
@@suyashagrawal1102 Ofcourse it is for beginners . Bt if you have no idea in programming , start with C
@@pratyushghosh-8025 I can't c
8:27
Initially value of a = 10
11
11
11
11
10
10
Finally value of a = 9
Sahi ho gaya yaar
Hello Harry, I have also seen your last JavaScript playlist "JavaScript Tutorial in Hindi". So what are you going to add to this new playlist?
All your playlists are very simple and good.
let it go, Brother.👍👍👍
ruclips.net/p/PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR
here
⬆⬆⬆⬆
Kya bolu me is bande ke baare me yr ... Harry bhai ko salute hai .. itna free me mehnat kon karta hai padhane me .... Aaj ki tareek me har koi youtube kuch saal tak gyaan pelta hai uske baad apne courses launch karke paise kamata hai ... Or ek taraf Harry bhai ko hi dekhlo ...🤔👏👏
Harry bhai esi tarha ka Php course bhi bna de jis tarha ap nay javascript ma sara koch guide kar k btaya hai 😊😊😊
Hey Harry Bhai, I just wanted to express my heartfelt gratitude for all the amazing courses you've been providing on your channel. I've already completed 6 courses (C, C++, DSA, HTML, Web development, React) and I'm now diving into JavaScript. Your teaching style is fantastic, and it's made my learning journey so much more enjoyable. Sending love and thanks from Nepal! Keep up the fantastic work! 8:35 -> console.log("++a = ", ++a); //Output: 11
console.log("a++ = ", a++); //Output:11
console.log("--a = ", --a); //Output:11
console.log("a-- = ", a--); //Output:11
console.log("a = ", a); //Output:10
console.log("a-- = ", a--); //Output:10
line 12: 11
line 13: 11
line14: 11
line 15: 11
line 16: 10
++a = 11
a++ = 11
- - a = 11
a - - = 11
a = 10
a - - = 10
Harry bhaiya mere ko reply chaiye, aapne bola comment krne ko maine answer bina dekhe comment kia hai to ab reply do mujhe
aur ha 8 months bad bhi apki playlist puri dekhra hu bhot mza a rhi mast padhate ho aap
may we both succeed more in life
bhai aapne ternary operator nhi krwaya 😢
Ye kya hota h bhai😢
Hello Harry, The answer is : ++a= 46
--a 45
a++ 45
a-- 46
He deserves like comment share subscribe and all yr , just look at his efforts yr, notes banaye hai bhai ne 👏👏👏👏
your content literally made me learn coding all thanks to codewithharry
bhai ek to aapki volume bht sahi hai , mera asus ka laptop hai usme speakers bht dheeme and mostly all laptops me bht dheemi awaaz, one of the reasons why i like watching your videos and prefer from other youtubers
this video is so Hard it took me 2 hours for master These operators especially Arithematical one but cz of you i did it❤
Great applause to My first programming language mentor👏
ou are the best coding tutor on entire youtube
console.log("Length and breadth of rectangle are 5 and 7 respectively. write a program to calculate the area and primeter of the rectangle.")
let l = 5;
let b = 7;
console.log("area")
console.log("l * b = ", l*b)
Superb content and quality ✨✨🔥
love you harry bhai 💖💖 I learned python from your python course in 9th class. now I am in 11th and topper of the class in CS 🔥🔥
8:40 outputs are = 11 , 11 , 11 , 11 , 10 , 10
i already learned some c++ from him and some more channels so this was easy 😅😅
Code with harry is a legend ❤❤
Lots of love bhaiya
This javascript course is very very helpful.
you are the best Harrybhai, so far I am enjoing it.
8:33
line 12 output :- 11
line 12 output:- 10
line 13 output:- 11
line 14 output:- 11
line 15 output:- 10
line 16 output:- 10
line 17 output:- 10
You deserve a 👍 for this amazing content
harry bhai ke 12:36 ki line was so epic
What are the best Extensions to run Javascript code in VS Code ?
12:33 harry bhai ka presence of mind🤣🤣
Thank you harry bro.... respect from button of my heart 👍
8:33
Output
Line No 12: 11
Line No 13: 11
Line No 14: 11
Line No 15: 11
Line No 16: 10
Line No 17: 10
bhai jo && and || wala logic hi mere 11 class mai python mai sabse badi dikkat de raha tha but abhi rahi se samjh aa gaya thanks bro❤
Bro you missed shift assignment operators (left shift = ...) !
Harry bhai....you don't know who you are for us❤❤ you're the light in the dark😊❤
Harry bhai, 16:30 kyu samajh me nahi ayga sabko yar ?aisi seej to Ek kisika bhi tutorial Dekhte hi samajhme aa jata hai. For example ek doctor ko programming to directly nahi aa sakta naa😂😂😂 I love your hardworks sir.
But there is something called over explanation which is not necessary.
I Salute and thanks for the 39.40 hours of javascript course.
BTW you are my favourite teacher❤❤❤
Harry bhai you are the best keep up the good work
great harry bhai level hugya yr
Bro Mujhe rat ya din me jab time milta hai ye video enjoy karta hu.
Sajda aapko
12:31 😅😂, jokes aside: This course is really helpful thanks a lot, guys we really need to support him more as he spends lots of time writing notes with hands for us and present it for free!
8:45 Output will be 10 , it is honest answer , i did not check first and write this comment , now i am going to check my answer .
10,12,12,10 is output of your question full honesty
You are teaching is very lovely
8:33
let a = 10
console.log(++a) //11
console.log(a++) //11 but value of a is 12
console.log(--a) //11
console.log(a--) //11
console.log(a) //11
EDIT: a = 45 in my case
8:14 - line 12 - 17
all in one JS file with the same variables:
++a = 46
a++ = 46
--a = 46
a-- = 46
a = 45
a-- = 45
all in separate JS files:
++a = 46
a++ = 45
--a = 44
a-- = 45
a = 45
a-- = 45
Thanks Harry bhai for this amazing content
wah maza agya assiduous mind with brilliant skills
This course is very helpful for me thank you dear sir harry love you very much 💓 you are the best ❤️😘❤️😘❤️❤️
printing a: 10
printing ++a: 11
printing a++: 11
printing --a: 11
printing a--: 11
printing a again : 10
printing a: 10
Harry Bhaiya mene answer shi nikal liya..
Answer 10 shi nikal liya ❤️
++a = 11 --> ++ will increment value of a by 1
a++ = 11 --> first it will print 11 then increment value of a to 12
--a = 11 --> previous value was 12 so after decrement it is 11
a-- = 11 --> it will still print 11 but after printing it will decrement value of a to 10
Thanks a lot Harry Sir ..
For a pdf notes and youe Love ...❤💖💗💞
output-
line 12: 11
line 13: 11
line 14: 11
line 15: 11
line 16: 10
line 17: 10
You are a great Teacher ♥♥ love from Pakistan
Completing millions dreams to learn coding ❤
the output of the question is ---
46
46
46
46
45
45
--- idk if it is right or not if the ans is right give it a like
Code :-
console.log("Operators in js")
let a = 10
// let b = 30
console.log("++a = ", ++a)
console.log("a++ = ", a++)
console.log("--a = ", --a)
console.log("a-- = ", a--)
console.log("a =", a)
console.log("a =", a)
My Output
Operators in js
++a = 11
a++ = 11
--a = 11
a-- = 11
a = 10
a = 10
++a = 11
a++ = 11 and then increment to 1 = 12
--a = 11
a-- = 11 and subtract by 1 = 10
a = 10
a-- = 10 and subtract by 1 = 9
8:31 - Answers (NO CHEATING FOR SURE)
- Line 7: 14
- Line 8: 6
- Line 9: 2.5
- Line 10: 10000
- Line 11: 2
- Line 12: 11
- Line 13: 11
- Line 14: 11
- Line 15: 11
- Line 16: 10
- Line 17: 10
1st : 11
2nd : 11
3rd :11
4th :11
5th :10
6th :10
and we get the value of a is 9.
thank you so much harry bhaiya
Dude Harry, I don't know how I explain your respect in my heart🥰. I am from Pakistan and I can't understand some words that you told in hindi😅
Nice course harry bhai 👍👍 good job and very good editing.
a + b = 14
a - b = 6
a * b = 40
a ** b = 10000
a / b = 2.5
a % b = 2
++a = 11
a++ = 11
--a = 11
a-- = 11
a = 10
a-- = 10
I am beginner .... Most PowerFull Video For JavaScript