JavaScript Operators and Expressions | JavaScript Tutorial in Hindi #6

Поделиться
HTML-код
  • Опубликовано: 24 ноя 2024

Комментарии • 2,2 тыс.

  • @CodeWithHarry
    @CodeWithHarry  2 года назад +76

    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

  • @kirtiiyer490
    @kirtiiyer490 2 года назад +322

    The best javascript course in RUclips. And it's FREE :DDD

    • @aashishsharma3566
      @aashishsharma3566 2 года назад +9

      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 😊

    • @suyashagrawal1102
      @suyashagrawal1102 2 года назад +3

      it sure is heheheeh :p

    • @ComputerWalaDoost
      @ComputerWalaDoost 2 года назад +1

      Yes, I Agree

    • @DoDoHiro
      @DoDoHiro 2 года назад +5

      Bhai kya aap 2 - 3 video upload kr sakte h plz sir do 😊😊

    • @suyashagrawal1102
      @suyashagrawal1102 2 года назад +7

      @@DoDoHiro Bhai ye reply section hai comment box nahi

  • @nomihaider96
    @nomihaider96 2 года назад +91

    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.

    • @karthik4519
      @karthik4519 2 года назад +3

      is electrical engineering bad ?? I have also taken it, cause i m not getting cse .

    • @nomihaider96
      @nomihaider96 2 года назад +1

      @@karthik4519 you should go for computer science

    • @karthik4519
      @karthik4519 2 года назад

      @@nomihaider96 it's late now 🥲 I got electrical in IITR

    • @karthik4519
      @karthik4519 2 года назад +1

      And last date of IIST aerospace, NSIT CSE are gone

    • @nomihaider96
      @nomihaider96 2 года назад +1

      @@karthik4519 go for CS wait next year am telling you with experience

  • @CodeWithHarry
    @CodeWithHarry  Год назад +31

    Code Backup Repository: github.com/CodeWithHarry/ultimate-js-course-youtube

  • @SohamSinghRajput69
    @SohamSinghRajput69 Год назад +2

    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

  • @iamrohit045
    @iamrohit045 2 года назад +67

    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.😊😊😊😊😊😊

  • @mayukhdevansahu5707
    @mayukhdevansahu5707 2 года назад +21

    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🔥🔥🔥🔥

  • @TheOnewhothinks
    @TheOnewhothinks Год назад +4

    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

  • @Stacey19-h81
    @Stacey19-h81 11 месяцев назад +3

    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
    @santhoshk2722 Год назад +29

    A++ : first use the actual value then add 1.
    ++A : first add the value then use.

  • @VishalSharma-fj7fd
    @VishalSharma-fj7fd 2 года назад +18

    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🔥🔥🔥

  • @zahirmughal59
    @zahirmughal59 2 года назад +82

    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💕

  • @AbdullahSaeed-zk6fo
    @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.

  • @mriduljaiin
    @mriduljaiin 2 года назад +6

    ULTIMATE VIDEOS! PLEASE DON'T STOP MAKING VIDEO LIKE THESE ..
    REALLY HELPING A LOT😄😄

  • @shauryalavhekar4855
    @shauryalavhekar4855 2 года назад +5

    Sir your the best teacher ever. No words to explain the respect I have for you

  • @Cluxy2006
    @Cluxy2006 8 месяцев назад

    Best RUclips Channel For Programming Beginners and Advanced Programmer Guy ! Thank You Harry Bhai For The Amazing Video🙏

  • @vashumalik_
    @vashumalik_ Год назад +16

    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
      @Vikram.201 Год назад +1

      Ha but vo agli baar a print krne pe dikhega vaise 10 hi print hoga

    • @black-beared
      @black-beared Год назад

      ​@@Vikram.201ji haan

  • @mr.hacker....6266
    @mr.hacker....6266 2 года назад +17

    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
      @SACHINYED Год назад

      Thanks mere bhai tumne comments me likha to pura samjh gya 😂😂

    • @crafttechindia
      @crafttechindia Год назад +1

      @@SACHINYED Ha yr bhai 😂😂😂
      Waha video nahi smjha par yaha ittu sa comment smjh gya bina explanation ke😂

  • @ditijtanwar4794
    @ditijtanwar4794 2 года назад +20

    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)

    • @futurexa
      @futurexa 2 года назад

      Nice!

    • @ditijtanwar4794
      @ditijtanwar4794 2 года назад

      @@futurexa ❤️❤️

    • @Shubhamkumar-oo7gc
      @Shubhamkumar-oo7gc 2 года назад

      my answer also be same .

    • @murtuzaahmed5042
      @murtuzaahmed5042 2 года назад

      How come val of a= 12 before printing a. ? Pls explain i don't get it.

    • @iMixIT4u
      @iMixIT4u Год назад

      ​@@murtuzaahmed5042not actually nine ..he is just assuming brother

  • @MrRahul-nw1qy
    @MrRahul-nw1qy Год назад +3

    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 .

  • @mkfactmonika
    @mkfactmonika Год назад +2

    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 😢😢

  • @anujapawar2119
    @anujapawar2119 Год назад +4

    Its too amazing to grasp the concepts of JS.. i just loved the way you teach.. really, appreciated 🙌🏻🙂

  • @uttrakumar8891
    @uttrakumar8891 2 года назад +6

    6 Videos of life Changing JavaScript Course
    Thanks HARRY Bhai !! 💐💐🥰🥰

  • @tusharcreates
    @tusharcreates 2 года назад +11

    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!

    • @siddhantkumar6801
      @siddhantkumar6801 2 года назад

      👍👍👍👍👍👍

    • @shivprakash001
      @shivprakash001 2 года назад

      Bro kese aaya
      Mujhe smj nhi aaya

    • @FfGoogledaddy
      @FfGoogledaddy 2 года назад

      @@shivprakash001 bhai video dobara dekho and focus while watching video. Best of luck

    • @siddhantkumar6801
      @siddhantkumar6801 2 года назад

      @@shivprakash001 Uske thore aage unhonne bataya hai

    • @akshatsanghavi
      @akshatsanghavi 2 года назад +1

      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)

  • @AyushKumarp4723
    @AyushKumarp4723 17 дней назад +1

    [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...

  • @FSCO_sahilsatishchavan
    @FSCO_sahilsatishchavan 2 года назад +15

    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
      @awmdanger9677 Год назад +4

      Bro first master one then learn the other. Warna confuse aise hoge pata nahi chalega code kya likhu aur kiska (speaking from experience).

  • @ranjanabedi
    @ranjanabedi Год назад +1

    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

  • @Usman_Butt_302
    @Usman_Butt_302 2 месяца назад +1

    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

  • @NileshYadav-rg8bf
    @NileshYadav-rg8bf 2 года назад +10

    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

  • @sumanthkumarsingh626
    @sumanthkumarsingh626 2 года назад +14

    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. 🙏❤

  • @manitmanit-x3z
    @manitmanit-x3z Год назад +11

    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
      @xboy2374 Год назад +6

      my son

    • @theflash34529
      @theflash34529 8 месяцев назад

      kha jaa humari jobs tu bhi

    • @kaifmomin7351
      @kaifmomin7351 7 месяцев назад +1

      @@theflash34529 🤣🤣🤣

    • @WhenCatPlayz
      @WhenCatPlayz 7 месяцев назад

      bahar jake khel, maze kar, abhi itni tension mat kar future leke kyuki jobs ki waise bhi kami padegi future me

    • @bhanupriyasd1899
      @bhanupriyasd1899 5 месяцев назад

      Yappa😅

  • @ARSALANSHAFI-c2b
    @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

  • @MeforMinutes
    @MeforMinutes 6 месяцев назад +1

    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 ❌❌

  • @perceptionpics05
    @perceptionpics05 Год назад +7

    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
      @Another2023 Год назад

      I hope to do yakka on this course

  • @abhishekkumarmehta743
    @abhishekkumarmehta743 2 года назад +4

    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

  • @umairabdullah9041
    @umairabdullah9041 2 года назад +5

    We need a video series on mathematics needed for programming

  • @AYAN1487_YT
    @AYAN1487_YT 2 дня назад

    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.

  • @Deepak-g2t1k
    @Deepak-g2t1k 11 месяцев назад

    Your teaching style has improved a lot

  • @pratyushghosh-8025
    @pratyushghosh-8025 2 года назад +4

    Mind blowing course ❤️♥️

    • @suyashagrawal1102
      @suyashagrawal1102 2 года назад

      CAN I BEGIN THIS JS COURSE WELL SINCE I DON'T HAVE ANY PRIOR KNOWLEDGE OF PROGRAMMING?

    • @pratyushghosh-8025
      @pratyushghosh-8025 2 года назад +1

      @@suyashagrawal1102 Ofcourse it is for beginners . Bt if you have no idea in programming , start with C

    • @suyashagrawal1102
      @suyashagrawal1102 2 года назад

      @@pratyushghosh-8025 I can't c

  • @gopalloharnew5948
    @gopalloharnew5948 2 года назад +4

    8:27
    Initially value of a = 10
    11
    11
    11
    11
    10
    10
    Finally value of a = 9

  • @yourownwhistler752
    @yourownwhistler752 2 года назад +4

    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.islost
      @ajeet.islost 2 года назад

      ruclips.net/p/PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR
      here
      ⬆⬆⬆⬆

  • @dipeshchoudhary1267
    @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 ...🤔👏👏

  • @MuhammadTalhaAftab
    @MuhammadTalhaAftab Год назад +2

    Harry bhai esi tarha ka Php course bhi bna de jis tarha ap nay javascript ma sara koch guide kar k btaya hai 😊😊😊

  • @nareshbohara35
    @nareshbohara35 Год назад +2

    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

  • @designsbycircuit
    @designsbycircuit 2 года назад +6

    line 12: 11
    line 13: 11
    line14: 11
    line 15: 11
    line 16: 10

  • @Sahildietnfitness
    @Sahildietnfitness Год назад +5

    ++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

  • @chauhanraj9343
    @chauhanraj9343 Год назад +8

    bhai aapne ternary operator nhi krwaya 😢

  • @teamdragon4261
    @teamdragon4261 11 месяцев назад +1

    Hello Harry, The answer is : ++a= 46
    --a 45
    a++ 45
    a-- 46

  • @dipeshdummy
    @dipeshdummy 10 месяцев назад

    He deserves like comment share subscribe and all yr , just look at his efforts yr, notes banaye hai bhai ne 👏👏👏👏

  • @himanshibindal3550
    @himanshibindal3550 Год назад

    your content literally made me learn coding all thanks to codewithharry

  • @sarimkhan917
    @sarimkhan917 Год назад +1

    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

  • @Ali_Ahmed_Yousuf
    @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❤

  • @swadistaan16
    @swadistaan16 Год назад +1

    Great applause to My first programming language mentor👏

  • @PC_THEME_CREATOR
    @PC_THEME_CREATOR Год назад

    ou are the best coding tutor on entire youtube

  • @drajput6942
    @drajput6942 10 месяцев назад

    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)

  • @sakshidhawan157
    @sakshidhawan157 7 месяцев назад +1

    Superb content and quality ✨✨🔥

  • @yashgoyal8327
    @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 🔥🔥

  • @Legend-fo4xh
    @Legend-fo4xh Год назад +1

    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 😅😅

  • @ravipatidar8681
    @ravipatidar8681 Год назад

    Code with harry is a legend ❤❤
    Lots of love bhaiya

  • @MallikarjunaNot
    @MallikarjunaNot Год назад

    This javascript course is very very helpful.

  • @AminFateh
    @AminFateh Год назад

    you are the best Harrybhai, so far I am enjoing it.

  • @unbeatable1743
    @unbeatable1743 Год назад +1

    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

  • @prasidhv3096
    @prasidhv3096 7 месяцев назад

    You deserve a 👍 for this amazing content

  • @SaranshMhaske
    @SaranshMhaske 5 месяцев назад +1

    harry bhai ke 12:36 ki line was so epic

  • @TheTerminator911
    @TheTerminator911 4 месяца назад +1

    What are the best Extensions to run Javascript code in VS Code ?

  • @r.itesh09
    @r.itesh09 Год назад +1

    12:33 harry bhai ka presence of mind🤣🤣

  • @dibyadash2446
    @dibyadash2446 Год назад

    Thank you harry bro.... respect from button of my heart 👍

  • @vitthal8177
    @vitthal8177 Год назад +1

    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

  • @luckyjangir8303
    @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❤

  • @Anshu_medatwal
    @Anshu_medatwal Год назад +1

    Bro you missed shift assignment operators (left shift = ...) !

  • @AmanKumar-kf1oc
    @AmanKumar-kf1oc 8 месяцев назад

    Harry bhai....you don't know who you are for us❤❤ you're the light in the dark😊❤

  • @Buggy_mind
    @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❤❤❤

  • @adnanismail426
    @adnanismail426 Год назад

    Harry bhai you are the best keep up the good work

  • @mobileg9551
    @mobileg9551 7 месяцев назад +1

    great harry bhai level hugya yr

  • @BrajeshKumar-sr9pw
    @BrajeshKumar-sr9pw Год назад

    Bro Mujhe rat ya din me jab time milta hai ye video enjoy karta hu.
    Sajda aapko

  • @NINJAlynx69
    @NINJAlynx69 24 дня назад

    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!

  • @Leeladharpanwar42
    @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 .

  • @CoderofToday-f-fida
    @CoderofToday-f-fida 4 месяца назад

    10,12,12,10 is output of your question full honesty

  • @khanali1267
    @khanali1267 Год назад

    You are teaching is very lovely

  • @Vinay-modiji
    @Vinay-modiji Год назад +1

    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

  • @thingswithvihaan
    @thingswithvihaan 23 дня назад

    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

  • @anandsingh3627
    @anandsingh3627 6 месяцев назад

    Thanks Harry bhai for this amazing content

  • @Technobot-f4h
    @Technobot-f4h 11 месяцев назад

    wah maza agya assiduous mind with brilliant skills

  • @MadniKhokhar
    @MadniKhokhar Год назад

    This course is very helpful for me thank you dear sir harry love you very much 💓 you are the best ❤️😘❤️😘❤️❤️

  • @kshitij.rajvanshi.9
    @kshitij.rajvanshi.9 Год назад

    printing a: 10
    printing ++a: 11
    printing a++: 11
    printing --a: 11
    printing a--: 11
    printing a again : 10
    printing a: 10

  • @black_root
    @black_root Год назад

    Harry Bhaiya mene answer shi nikal liya..
    Answer 10 shi nikal liya ❤️

  • @sameermulla5149
    @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

  • @Muhammad_Hadi_786
    @Muhammad_Hadi_786 11 месяцев назад

    Thanks a lot Harry Sir ..
    For a pdf notes and youe Love ...❤💖💗💞

  • @RP-bg2os
    @RP-bg2os Год назад

    output-
    line 12: 11
    line 13: 11
    line 14: 11
    line 15: 11
    line 16: 10
    line 17: 10

  • @mehvishismail5347
    @mehvishismail5347 11 месяцев назад

    You are a great Teacher ♥♥ love from Pakistan

  • @Science_and_technik
    @Science_and_technik Год назад

    Completing millions dreams to learn coding ❤

  • @MainakBhowmick-vw3sh
    @MainakBhowmick-vw3sh Год назад +1

    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

  • @chandanmastiboy1277
    @chandanmastiboy1277 Год назад

    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

  • @SaiasmiGupta
    @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

  • @prajwalitsinghraja3196
    @prajwalitsinghraja3196 Месяц назад

    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

  • @chauhanraj9343
    @chauhanraj9343 Год назад +1

    1st : 11
    2nd : 11
    3rd :11
    4th :11
    5th :10
    6th :10
    and we get the value of a is 9.

  • @2dgamers513
    @2dgamers513 Год назад

    thank you so much harry bhaiya

  • @amirmunir7414
    @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😅

  • @vanshikaagarwal1403
    @vanshikaagarwal1403 Год назад

    Nice course harry bhai 👍👍 good job and very good editing.

  • @SameerAlam-h6k
    @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