On your request, I have revamped the channel membership and added more levels. Click the join button to check out more - kzbin.info/door/eVMnSShP_Iviwkknt83cwwjoin
@Grand_Master3602 жыл бұрын
bhai CWH mean hota kya hai
@Gourav-5112 жыл бұрын
@@Grand_Master360 code with harry
@mathematicalanalysisbyvickysir2 жыл бұрын
@CodeWithHarry members ship me alag se class loge kya Koe contact number mil sakta ha kya
@snh33022 жыл бұрын
Abhs
@Channel-lo3dh2 жыл бұрын
ap laravel ka b ek course banao
@kirtiiyer4902 жыл бұрын
The best javascript course in KZbin. And it's FREE :DDD
@aashishsharma35662 жыл бұрын
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 😊
@suyashagrawal11022 жыл бұрын
it sure is heheheeh :p
@ComputerWalaDoost2 жыл бұрын
Yes, I Agree
@DoDoHiro2 жыл бұрын
Bhai kya aap 2 - 3 video upload kr sakte h plz sir do 😊😊
@suyashagrawal11022 жыл бұрын
@@DoDoHiro Bhai ye reply section hai comment box nahi
@nomihaider962 жыл бұрын
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.
@karthik45192 жыл бұрын
is electrical engineering bad ?? I have also taken it, cause i m not getting cse .
@nomihaider962 жыл бұрын
@@karthik4519 you should go for computer science
@karthik45192 жыл бұрын
@@nomihaider96 it's late now 🥲 I got electrical in IITR
@karthik45192 жыл бұрын
And last date of IIST aerospace, NSIT CSE are gone
@nomihaider962 жыл бұрын
@@karthik4519 go for CS wait next year am telling you with experience
Hello Harry, Now replit is not Fully free anymore. Is there any good js compiler which is free
@sidgamingyt25072 ай бұрын
Vs code
@iamrohit0452 жыл бұрын
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.😊😊😊😊😊😊
@ajoychand89982 жыл бұрын
me too
@Dr.dhumketuIITDholakpur2 жыл бұрын
Me too
@ramkapoor610 Жыл бұрын
@@ajoychand8998 toh iit mel gyi kya
@vves14158 ай бұрын
12 th in graduation how??
@kaifmomin73517 ай бұрын
@@vves1415 😆😆😆 alag nasha hai bhai woh
@mayukhdevansahu57072 жыл бұрын
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🔥🔥🔥🔥
@Stacey19-h8111 ай бұрын
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:)
@santhoshk2722 Жыл бұрын
A++ : first use the actual value then add 1. ++A : first add the value then use.
@Justin-x106b2 ай бұрын
Got it sirrr
@SohamSinghRajput69 Жыл бұрын
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
@MrRahul-nw1qy Жыл бұрын
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 .
@VishalSharma-fj7fd2 жыл бұрын
Harry bhai you are such a nice mentor and providing such a amazing course for free. You are legend of KZbin education industry. East West Harry bhai is best🔥🔥🔥
@zahirmughal592 жыл бұрын
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💕
@nareshbohara35 Жыл бұрын
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
@mr.hacker....62662 жыл бұрын
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) 🙂🙃😊
@SACHINYED Жыл бұрын
Thanks mere bhai tumne comments me likha to pura samjh gya 😂😂
@crafttechindia Жыл бұрын
@@SACHINYED Ha yr bhai 😂😂😂 Waha video nahi smjha par yaha ittu sa comment smjh gya bina explanation ke😂
@TheOnewhothinks Жыл бұрын
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
@abhishekkumarmehta7432 жыл бұрын
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
@ditijtanwar47942 жыл бұрын
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)
@futurexa2 жыл бұрын
Nice!
@ditijtanwar47942 жыл бұрын
@@futurexa ❤️❤️
@Shubhamkumar-oo7gc2 жыл бұрын
my answer also be same .
@murtuzaahmed50422 жыл бұрын
How come val of a= 12 before printing a. ? Pls explain i don't get it.
@iMixIT4u Жыл бұрын
@@murtuzaahmed5042not actually nine ..he is just assuming brother
@shauryalavhekar48552 жыл бұрын
Sir your the best teacher ever. No words to explain the respect I have for you
@mkfactmonika Жыл бұрын
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 😢😢
@Usman_Butt_3022 ай бұрын
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
@mriduljaiin2 жыл бұрын
ULTIMATE VIDEOS! PLEASE DON'T STOP MAKING VIDEO LIKE THESE .. REALLY HELPING A LOT😄😄
@tusharcreates2 жыл бұрын
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!
@siddhantkumar68012 жыл бұрын
👍👍👍👍👍👍
@shivprakash0012 жыл бұрын
Bro kese aaya Mujhe smj nhi aaya
@FfGoogledaddy2 жыл бұрын
@@shivprakash001 bhai video dobara dekho and focus while watching video. Best of luck
@siddhantkumar68012 жыл бұрын
@@shivprakash001 Uske thore aage unhonne bataya hai
@akshatsanghavi2 жыл бұрын
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)
@anujapawar2119 Жыл бұрын
Its too amazing to grasp the concepts of JS.. i just loved the way you teach.. really, appreciated 🙌🏻🙂
@AbdullahSaeed-zk6foАй бұрын
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.
@uttrakumar88912 жыл бұрын
6 Videos of life Changing JavaScript Course Thanks HARRY Bhai !! 💐💐🥰🥰
@vashumalik_ Жыл бұрын
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)
@Vikram.201 Жыл бұрын
Ha but vo agli baar a print krne pe dikhega vaise 10 hi print hoga
@black-beared Жыл бұрын
@@Vikram.201ji haan
@Cluxy20068 ай бұрын
Best KZbin Channel For Programming Beginners and Advanced Programmer Guy ! Thank You Harry Bhai For The Amazing Video🙏
@ARSALANSHAFI-c2bАй бұрын
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
@FSCO_sahilsatishchavan2 жыл бұрын
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
@awmdanger9677 Жыл бұрын
Bro first master one then learn the other. Warna confuse aise hoge pata nahi chalega code kya likhu aur kiska (speaking from experience).
@manitmanit-x3z Жыл бұрын
I am in 5th class but by your tutorials I have learnt Python, HTML,CSS and now I am learning JS Thank you sir
@xboy2374 Жыл бұрын
my son
@theflash345298 ай бұрын
kha jaa humari jobs tu bhi
@kaifmomin73517 ай бұрын
@@theflash34529 🤣🤣🤣
@WhenCatPlayz7 ай бұрын
bahar jake khel, maze kar, abhi itni tension mat kar future leke kyuki jobs ki waise bhi kami padegi future me
@bhanupriyasd18996 ай бұрын
Yappa😅
@NileshYadav-rg8bf2 жыл бұрын
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
@murtuzaahmed50422 жыл бұрын
Thanks bhai.
@dipeshchoudhary1267 Жыл бұрын
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 ...🤔👏👏
@sarimkhan917 Жыл бұрын
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
@sumanthkumarsingh6262 жыл бұрын
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. 🙏❤
@perceptionpics05 Жыл бұрын
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.
@Another2023 Жыл бұрын
I hope to do yakka on this course
@umairabdullah90412 жыл бұрын
We need a video series on mathematics needed for programming
@ranjanabedi Жыл бұрын
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
@yashgoyal8327 Жыл бұрын
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 🔥🔥
@Sahildietnfitness Жыл бұрын
++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
@pratyushghosh-80252 жыл бұрын
Mind blowing course ❤️♥️
@suyashagrawal11022 жыл бұрын
CAN I BEGIN THIS JS COURSE WELL SINCE I DON'T HAVE ANY PRIOR KNOWLEDGE OF PROGRAMMING?
@pratyushghosh-80252 жыл бұрын
@@suyashagrawal1102 Ofcourse it is for beginners . Bt if you have no idea in programming , start with C
@suyashagrawal11022 жыл бұрын
@@pratyushghosh-8025 I can't c
@gopalloharnew59482 жыл бұрын
8:27 Initially value of a = 10 11 11 11 11 10 10 Finally value of a = 9
@gopalloharnew59482 жыл бұрын
Sahi ho gaya yaar
@drajput694210 ай бұрын
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)
@Ali_Ahmed_Yousuf Жыл бұрын
this video is so Hard it took me 2 hours for master These operators especially Arithematical one but cz of you i did it❤
@yourownwhistler7522 жыл бұрын
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.👍👍👍
@ajeet.islost2 жыл бұрын
kzbin.info/aero/PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR here ⬆⬆⬆⬆
@designsbycircuit2 жыл бұрын
line 12: 11 line 13: 11 line14: 11 line 15: 11 line 16: 10
@chauhanraj9343 Жыл бұрын
bhai aapne ternary operator nhi krwaya 😢
@Weindian00722 күн бұрын
Ye kya hota h bhai😢
@AYAN1487_YT3 күн бұрын
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.
@dipeshdummy10 ай бұрын
He deserves like comment share subscribe and all yr , just look at his efforts yr, notes banaye hai bhai ne 👏👏👏👏
@teamdragon426111 ай бұрын
Hello Harry, The answer is : ++a= 46 --a 45 a++ 45 a-- 46
@luckyjangir8303 Жыл бұрын
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❤
@MuhammadTalhaAftab Жыл бұрын
Harry bhai esi tarha ka Php course bhi bna de jis tarha ap nay javascript ma sara koch guide kar k btaya hai 😊😊😊
@Leeladharpanwar42 Жыл бұрын
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 .
@sameermulla5149 Жыл бұрын
++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
@MeforMinutes6 ай бұрын
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 ❌❌
@Deepak-g2t1k11 ай бұрын
Your teaching style has improved a lot
@himanshibindal3550 Жыл бұрын
your content literally made me learn coding all thanks to codewithharry
@NINJAlynx6926 күн бұрын
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!
@AmanKumar-kf1oc8 ай бұрын
Harry bhai....you don't know who you are for us❤❤ you're the light in the dark😊❤
@Buggy_mind Жыл бұрын
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❤❤❤
@unbeatable1743 Жыл бұрын
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
@Legend-fo4xh Жыл бұрын
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 😅😅
@SaranshMhaske6 ай бұрын
harry bhai ke 12:36 ki line was so epic
@swadistaan16 Жыл бұрын
Great applause to My first programming language mentor👏
@black_root Жыл бұрын
Harry Bhaiya mene answer shi nikal liya.. Answer 10 shi nikal liya ❤️
@SaiasmiGupta Жыл бұрын
++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
@AyushKumarp472319 күн бұрын
[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...
@r.itesh09 Жыл бұрын
12:33 harry bhai ka presence of mind🤣🤣
@CoderofToday-f-fida4 ай бұрын
10,12,12,10 is output of your question full honesty
@CreativeCodeHubOfficial3 ай бұрын
11 10 9 10 9 9 as a beginner i saw your video 3 months before and i already show the answer on that time but now i don't have any idea about the answer and from today i am very serious about javascript i hope my answer is correct
output- line 12: 11 line 13: 11 line 14: 11 line 15: 11 line 16: 10 line 17: 10
@PC_THEME_CREATOR Жыл бұрын
ou are the best coding tutor on entire youtube
@amirmunir7414 Жыл бұрын
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😅
@thingswithvihaan25 күн бұрын
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
@BrajeshKumar-sr9pw Жыл бұрын
Bro Mujhe rat ya din me jab time milta hai ye video enjoy karta hu. Sajda aapko
@ravipatidar8681 Жыл бұрын
Code with harry is a legend ❤❤ Lots of love bhaiya
@chauhanraj9343 Жыл бұрын
1st : 11 2nd : 11 3rd :11 4th :11 5th :10 6th :10 and we get the value of a is 9.
@MadniKhokhar Жыл бұрын
This course is very helpful for me thank you dear sir harry love you very much 💓 you are the best ❤️😘❤️😘❤️❤️
@websitedeveloper48132 ай бұрын
In simple way the value of plus(+) is equal to 1 and value of minus(-) is equal to 0 in JavaScript (+) = 1 (-) = 0
@SameerAlam-h6k Жыл бұрын
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
@KingTut-7 ай бұрын
Output: ++a= 11 a++= 11 - - a= 11 a- - = 11 a= 10 a - - = 10 Finally value of a will be 9
@mehvishismail534711 ай бұрын
You are a great Teacher ♥♥ love from Pakistan
@iammeraj0220 Жыл бұрын
let a=10; console.log("++a",++a)=11 console.log("a++",a++)=11 console.log("--a",--a)=11 console.log("a--",a--)=11 console.log("a",a)=10 console.log("a--",a--)=10 Hope it will help others
@LengendCricketClub10 ай бұрын
Operators in Js a + b = 14 a - b = 6 a / b = 2.5 a * b = 40 a ** b = 10000 --a = 9 a-- = 9 a++ = 8 ++a = 10
@prasidhv30967 ай бұрын
You deserve a 👍 for this amazing content
@vitthal8177 Жыл бұрын
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
@apurbanag Жыл бұрын
@CodeWithHarry sir the output is: ++a = 11 a++ = 11 --a = 11 a-- = 11 a = 10 a-- = 10
@akashupadhyay484811 ай бұрын
a++=16 ++a=18 a--= 18 --a=16 in this first a value is printed an there is increament in the second line the initially value was increamented to 17 and again incremented then it printed the value of a as 18 same as in all cases🙂🙂
@LovepreetKumar-us6gw51 минут бұрын
Thanks buddy, You are amazing!
@Muhammad_Hadi_78611 ай бұрын
Thanks a lot Harry Sir .. For a pdf notes and youe Love ...❤💖💗💞
@Saadullahkhan35 ай бұрын
8:40 My Answer a = 10 ++a = 11 Now, a = 11 a++ = 11 but a is become -> 12 ---a = 11 a-- = 11 but now a is -> 10 In simple output is: 11 11 11 11
@sakshidhawan1577 ай бұрын
Superb content and quality ✨✨🔥
@khanali1267 Жыл бұрын
You are teaching is very lovely
@Lucifer-8346 ай бұрын
Bro a-- me jo value hogi usme se -1 ho jayga or --a me jo value hogi usme ab next time jab vo print hoga to usme se -1 hoga