Why you need hooks and project

Sdílet
Vložit
  • čas přidán 20. 08. 2023
  • Visit chaicode.com for all related materials, community help, source code etc.
    Sara code yaha milta h
    github.com/hiteshchoudhary/
    Discord pe yaha paaye jaate h:
    ""/discord
    Instagram pe yaha paaye jaate h:
    / hiteshchoudharyofficial
  • Zábava

Komentáře • 3,6K

  • @unknown-dy8sy
    @unknown-dy8sy Před 11 měsíci +420

    React is temporary but Hitesh sir explanations are permanent 🎉

  • @quickSilverXMen
    @quickSilverXMen Před 9 měsíci +86

    Hooks in React ⚛
    Intro 0:00
    Start 2:21
    creating the project 2:30
    UI updation with simple JS 8:00
    Problem in UI updation with JS 10:50
    Hooks in React intro 13:00
    Hooks (useState) implementation 15:13
    Assignment 26:11
    Conclude 27:14
    Thank you sir.

  • @kinlearn
    @kinlearn Před měsícem +2

    17:36 samajh gaye sir ji.. bahut hi practice example se aapne realise karva diya ki react ki kya jarurat aur power hai aur react exactly kya problem solve karta hai.. 🙌

  • @sanjananegi5954
    @sanjananegi5954 Před 4 měsíci +3

    pehli baar dhng se smjh aaya ye concept , thnk you so much sr

  • @purposedriven6332
    @purposedriven6332 Před 9 měsíci +46

    25:11 state changes are asynchronous that's why the value in console is not being updated immediately. An important detail that got overlooked in the video, maybe because the agenda for this one is a little different. Keep the good work up, very helpful......

    • @kritarthapatowary7289
      @kritarthapatowary7289 Před 5 měsíci +3

      This comment needs to be at top.

    • @g.guruprasad2315
      @g.guruprasad2315 Před 2 měsíci +1

      Bro Really thank you bro, I am breaking my head since last 3 days why it not updating same value..
      Really thanks Man

    • @g.guruprasad2315
      @g.guruprasad2315 Před 2 měsíci

      Hello Bro,


      {setCount((count)); console.log(await count); count++; }}>
      count is {count}


      Bro I have tried using async and await but, let me give example : when I have clicked the button 1st it is logged 1 and i have tried again but it again logged 1 and i tried once more but it logged 2, on again clicking it logged 2, this means the value of the count is changing when the button is pressed twice
      Please do replay Bro

    • @g.guruprasad2315
      @g.guruprasad2315 Před 2 měsíci

      function App() {
      let [count, setCount] = useState(0)
      if(count>=20 || count
      Add by one

      { setCount((count-1)); ; console.log(count-1); }}>
      Subract by one




      )
      }
      I think this will be the correct now

    • @godkillyt7145
      @godkillyt7145 Před 26 dny

      @@g.guruprasad2315 bro remove setCount((count)) and await your code will run properly and I don't think await works in console.log

  • @muhammadhilal5807
    @muhammadhilal5807 Před 7 měsíci +4

    The way you teach is really clam most of the youtubers rush in teaching idk why. The calm manner really boost up the confidence. Newly subscribed :)

  • @sayandeepsadhukhan5016
    @sayandeepsadhukhan5016 Před 3 měsíci +4

    let [value, setValue] = useState(0)
    const addValue = () => {
    if (value == 20){
    setValue(value = 20)
    }
    else{
    setValue(value+1)
    }

    }

    const removeValue = () => {
    if (value > 0){
    setValue(value - 1)
    }
    else{
    setValue(value = 0)
    }

    }
    This is the whole solution !
    Sir your teaching style is just extraordinary , so humble, so many clarity ! Thank you so much ❤❤❤❤❤❤❤❤❤❤❤❤❤❤👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍👍

    • @dipeshmaindolia
      @dipeshmaindolia Před 2 dny

      const addValue = () => {
      console.log("clicked", counter);
      if (counter < 20) {
      setCounter(counter + 1);
      }
      };
      const removeValue = () => {
      console.log("clicked", counter);
      if (counter >= 1) {
      setCounter(counter - 1);
      }
      };

  • @akki1065
    @akki1065 Před 3 měsíci

    I have seen your chai aur backend series, and now referring this series, your teaching method is awesome sir, very helpful.

  • @Muhammadamir-kx2jx
    @Muhammadamir-kx2jx Před 10 měsíci +9

    Thanks Bhaiya for being a great explainer. Learning in this video is that React hooks are basically used for updating the UI (User Interface). We don’t need to reflect each and every change manually. React makes UI updation easy. That’s why we should learn about hooks in React.

  • @saikrishna-or5qj
    @saikrishna-or5qj Před 11 měsíci +8

    The way of explaining is awesome. Linking the real world example with the concepts, no one can explain like u sir. I am grateful that learning things from a great professional.Thankyou for the such a amazing content sir.

  • @harshitnayan2925
    @harshitnayan2925 Před měsícem +1

    Probably the best explanation of concepts I've seen on youtube.

  • @sakshigupta1593
    @sakshigupta1593 Před 2 měsíci +1

    I have no words for your explanation sir. now hooks topic is crystal clear.

  • @decent719
    @decent719 Před 4 měsíci +5

    End level explanations.No what matter what your mood is but when you see his smile your inner coder wake's up and then you forget clocking is ticking.

  • @sukhendubanerjee5082
    @sukhendubanerjee5082 Před 11 měsíci +5

    Sir thank you for creating such a beautiful javascript playlist,one more request sir please create more projects on it so that we can gain confidence in js.
    Love from West Bengal ❤

  • @dishajaiswal4783
    @dishajaiswal4783 Před měsícem

    12:30 han smjh gye smjh gye, react bhot hi reactive hai... you explained hooks in such a simple way as a cup of tea... thankyou

  • @Hafijur0211
    @Hafijur0211 Před 11 měsíci +5

    "Thanks for being an awesome React teacher! Your teaching makes complex concepts seem so much simpler. Your clear explanations and relatable examples really help us understand and apply React effectively. Grateful for your patience and dedication in guiding us through this journey. Looking forward to building more cool things with React, all thanks to your great teaching!"

  • @pareshkamaliya2493
    @pareshkamaliya2493 Před 11 měsíci +10

    Absolutely incredible! Your ability to simplify explanations is truly amazing. I have decided to follow this entire series of react JS from you and intending to not just passively watch, but actively engage and practice every step. The accessibility of learning material in such a user-friendly manner is genuinely refreshing. A big thank you for that! Eagerly looking forward to the release of more tutorials. Keep up the fantastic work! 🚀

  • @thecalgarians4597
    @thecalgarians4597 Před 2 měsíci +2

    Hitesh ji, under the hood Rocket Science to hai, no doubt, leking aapne explain is tarah se kiya hai ki Rocket science lag nahi rahi. HATS OFF to your pedagogy ❤❤❤

  • @sagarsen1575
    @sagarsen1575 Před 4 měsíci +30

    Appne itna achhe se samjhaya ki video khatam ho ne se pehelei assignment khatam ho gya
    function increment(){
    if(counter + 1 > 20){
    alert("Limit exceed")
    } else {
    setCounter(counter+1)
    console.log(counter);
    }
    }
    function decrement(){
    if(counter-1 < 0){
    alert("Value cannot be negetive")
    } else {
    setCounter(counter-1)
    console.log(counter)
    }
    }

  • @myproject6768
    @myproject6768 Před 11 měsíci +18

    // For decrease
    if (counter > 0 ) setCounter( counter -1);
    // For add
    if ( counter < 30)
    setCounter ( counter+1)
    Itne achche s smjaya ki assignment me sochna hi nhi padha

  • @Anil-vh1fu
    @Anil-vh1fu Před 9 měsíci +7

    After 1 month of upload & Comment is full of motivation + more than 500 [currently [1369], I am loving how students are appreciating guru ❤ I have been following from Main channel Javascript series from 2k18... But examples and explanation in native language is damnn attraction to these languages

  • @divyavewall
    @divyavewall Před 3 měsíci

    I was never able to write code in react but after watching 2-3 videos of this playlist I am confident enough to write codes and also able to understand what is actually happening behind the scenes , never thought it will be so fun, Thankyou Sir for making these series, your explanations are always best and of top notch quality .😊

  • @g.guruprasad2315
    @g.guruprasad2315 Před 2 měsíci

    Dear Sir,
    I am Happy, because of your teaching technique. I hope this will help many people and one small help I argue you to explain that last error, which the value of count is 16 and the value of count in console is 15 and I have tried to know the reason beyond, but i did not get the proper answer.
    I hope Chai sir will give replay to my Comment
    please sir...... please do replay
    I really thank you, for your teaching efforts in React
    Have a nice day

  • @stocksandbeyond
    @stocksandbeyond Před 9 měsíci +8

    I have Completed My React series From some other CZcams Channel some Concepts Got cleard there But I was still Having Doubts i was creating some basic projects with that knowledge but still having some doubts So i decided to take a look at your course and it was like a miracle the knowledge given here by Hitesh sir is immense and deep u basically understand how the react works rather than just therotical knowledge .
    Thank You Hitesh Sir For this !!! nd lots of Love!!
    ❤💘💘

    • @guptasagar694
      @guptasagar694 Před 5 měsíci

      Same Here..I got confidence now after seeing his series

  • @luckyjaisar8202
    @luckyjaisar8202 Před 11 měsíci +3

    excellent teaching wid smooth style..!! 👌

  • @JunaidKhan-ny8tu
    @JunaidKhan-ny8tu Před měsícem

    Ap itne ache se smjhate hy dil krta hy video khtm e na ho 😃 Thank you

  • @xdcoder_xyz
    @xdcoder_xyz Před měsícem

    Wow, itna smoothly smjhaya, pta hi nhi chla kab video khtm hone pe aagya

  • @jaideeppoojary
    @jaideeppoojary Před 11 měsíci +3

    Even I know how to use the state hook I'm enjoying the way sir explaining it. Thank you sir✨

  • @nirmal03
    @nirmal03 Před 10 měsíci +5

    Your smile while teaching creates positive energy among us. So, please keep smiling and continue teaching us. 😊❤

  • @user-rp1ou6tq7x
    @user-rp1ou6tq7x Před měsícem

    Sir your all course is sach in a depth. Thank you for teaching us in depth. I have earned many things which I use in my projects.

  • @santoshshrivastava6531

    Thanks Bhaiya for being a great explainer. Learning in this video is that React hooks are basically used for updating the UI (User Interface). We don’t need to reflect each and every change manually. React makes UI updation easy. That’s why we should learn about hooks in React.Thanks Bhaiya for being a great explainer. Learning in this video is that React hooks are basically used for updating the UI (User Interface). We don’t need to reflect each and every change manually. React makes UI updation easy. That’s why we should learn about hooks in React.

  • @iNeurons
    @iNeurons Před 11 měsíci +9

    गुरुदेव को प्रणाम 🙏🙏

  • @priyankasaini7204
    @priyankasaini7204 Před 9 měsíci +8

    27:22 " react k basics ho gye h" , this line brings a smile 😊😂😇on my face because sir m thoda dari hui thi react k naam se ..pr aap bahut chill ho ..itni aashani se sab samjha dete ho .. now I am confident ki aap padhaoge to m sikh jaugnig...Thankyou sir❤❤❤
    Mane apki Chai with Javascript series b dekhi h .. and it was amazing. ❣❣❣❣

  • @smartincomedude1946
    @smartincomedude1946 Před 3 měsíci

    Thanks alot for making us smile while learning to code , most coders are harsh and not like you

  • @user-rj7lr2ji5l
    @user-rj7lr2ji5l Před 2 měsíci

    Much much better than any paid courses....Thankyou sirr...😊😊

  • @hassanhameed7796
    @hassanhameed7796 Před 4 měsíci +3

    the way you explained the concept of states and hooks was very beautiful...thank you Hitesh bhai..

  • @SarveshKumar-08
    @SarveshKumar-08 Před 7 měsíci +4

    00:03 Learning hooks and projects helps in understanding concepts
    01:55 Create a project called counter using React .
    06:05 Creating a counter and updating its value on button click
    08:09 Adding values to the browser console and updating the counter
    12:27 React provides hooks for updating data in a controlled manner.
    14:34 Hooks are essential for code updation and debugging
    18:18 The variable counter can be automatically updated in the UI using React.
    19:56 Understanding how to update a counter variable
    23:28 Understanding the use of hooks and project
    25:25 Learn about hooks in React and how they are used

  • @DeveloperAzhar
    @DeveloperAzhar Před 4 měsíci

    Great explanation Hitesh sir 😍, your video made it even clearer for me

  • @soumyasaxena77
    @soumyasaxena77 Před 23 dny

    thankyou for making this topic so easy.. no one has taught hooks with such ease :)

  • @abbas__00
    @abbas__00 Před 11 měsíci +5

    Sir hooks bahut hi confusion create kar Raha tha but you made it ❤..... please cover all hooks

    • @chaiaurcode
      @chaiaurcode  Před 11 měsíci +9

      Projects me baaki apne aap cover ho jayenge

    • @abbas__00
      @abbas__00 Před 11 měsíci +2

      @@chaiaurcode ok sir thank you 😍

  • @nirmallyakoner6005
    @nirmallyakoner6005 Před 11 měsíci +27

    Assignment answer
    const addValue = () => {
    if(counter {
    if(counter>0 ){
    counter = counter - 1
    setCounter(counter)
    }
    console.log("Clicked",counter);
    }
    if I use greater than and equal to and put the increment statement outside the block then the initial value still changes and when I reach 20 on UI and still clicks on addvalue button then UI is not changing but the value is changing inside. when after clicking so much you click on removevalue then you see that your value starts from where you stop clicking and from there it will start decrasing.

    • @pranjalgogoigaming-1209
      @pranjalgogoigaming-1209 Před 10 měsíci +2

      const addNumber = () => {
      if(count {
      if(count>=1){
      setCount(count - 1)
      }
      }

    • @cuttiecatty1497
      @cuttiecatty1497 Před 9 měsíci +1

      rather goo like this `const addValue = () => {
      ctr = ctr + 1
      if(ctr

    • @EnoughGaming
      @EnoughGaming Před 9 měsíci +4

      const addValue = ()=> {
      if(counter !== 20) {
      setCounter(counter + 1);
      } else {
      counter = 20;
      }
      }
      const removeValue = ()=> {
      if(counter !== 0) {
      setCounter(counter - 1);
      } else {
      counter = 0;
      }
      }

    • @bistap2778
      @bistap2778 Před 8 měsíci +2

      ​ let [counter,setCounter] = useState(0);

      let addValue = () => {
      console.log("Value Added",counter);
      setCounter(counter++);
      }
      let removeValue = () =>
      {
      console.log("Value Removed",counter);

      if(counter !== 0)
      {setCounter(counter- -);}
      else
      {setCounter(0)}
      }

  • @athravmehta4598
    @athravmehta4598 Před 4 měsíci

    Comment krne ke liye specially, office ke laptop m login kiya hai, and yes cricket vali baat yaad rhegi. haha, ... but seriously man very nice explanation .... loved it.

  • @mahvishfatima1692
    @mahvishfatima1692 Před měsícem

    Your style of teaching is just mindblowing sir, almost indulge in react for a couple of months now but was unable to clear this concept ,but after watching your videos I can say confidently " ya I know react & its concepts", regret that I was not starting react from ur course,but grateful that finally, I have best teacher who knows how to build students with clear concepts...

  • @killer7495
    @killer7495 Před 11 měsíci +4

    Sir aapka hook wala example sun ke maza aa gaya
    mereko bhi har baar Hooks sun ke Hook pull yaad aata😅

  • @chetan_rajputt
    @chetan_rajputt Před 11 měsíci +3

    Samaj me aa rha 😊

  • @VikashKumar-gm6ym
    @VikashKumar-gm6ym Před 3 měsíci

    great content sir. Had seen videos of almost every creator on youtube bue never got the confidence in coading but sice whwn i started following you i am getting that confidence

  • @user-hr5ub3yi3l
    @user-hr5ub3yi3l Před měsícem

    excited to know what more can be offered than such quality content

  • @mriduakaxxehacker
    @mriduakaxxehacker Před 11 měsíci +3

    Thank you sir ❤

  • @siddhartha5302
    @siddhartha5302 Před 11 měsíci +3

    Thank you so much sir

  • @Rob_in_Malhotra
    @Rob_in_Malhotra Před měsícem

    Hands Down, the best React series. The way things are explained, marvellous!

  • @user-ze1qh2wm5s
    @user-ze1qh2wm5s Před 3 měsíci

    thanks , i recently started chai aur react course.I amazed by the amount of knowledge give in a smaller time.

  • @funnyclipsofbgmijods4804
    @funnyclipsofbgmijods4804 Před 11 měsíci +5

    @Everyone please comment on here. The reach is important for us to motivate sir to the highest and squeeze out the best number 1 content of React in hindi from Hitech sir.❤❤❤❤❤❤❤❤

  • @anilkumarnayakk2235
    @anilkumarnayakk2235 Před 10 měsíci +4

    I am 35 yrs old still not settled in life just started learning react Hitesh Sir you are a big hope for me

  • @user-nz8sy4dq8y
    @user-nz8sy4dq8y Před 3 měsíci

    Guys this is the most important video on syncing on data layer and ui , understand it well , i got this information by paid 24k rs. Thank you hitesh sir

  • @vlogsdiaries4250
    @vlogsdiaries4250 Před 4 měsíci

    thank you for the video, the way you explain by making small projects make it easy to understand, keep making such videos.

  • @CandleLight-Shorts
    @CandleLight-Shorts Před 10 měsíci +13

    Assignment 1 sol: ->
    import { useState } from "react";
    function App() {
    let [counter, setCounter] = useState(0);
    function increment() {
    setCounter((p) => {
    return p < 20 ? p + 1 : p;
    });
    }
    function decrement() {
    setCounter((p) => {
    return p > 0 ? p - 1 : p;
    });
    }
    return (

    {counter}
    increment
    decrement

    );
    }
    export default App;

    • @ankitsaurabh8158
      @ankitsaurabh8158 Před 7 měsíci +4

      const [count, setCount] = useState(0)
      const addValue = () => {
      setCount(count + 1)
      }
      const decValue = () => {
      setCount(Math.max(0, count - 1))
      }

  • @aditijain9791
    @aditijain9791 Před 3 měsíci

    keep doing great work man! you amaze me by your explanation!

  • @user-ys8sl8dc8l
    @user-ys8sl8dc8l Před 25 dny

    thanks sir for revealing this kind of teaching cause now we know what teaching really means when it comes to understanding of concepts and basics , you have setted standard that no one can stand none another than you..

  • @pcwinds653
    @pcwinds653 Před 4 měsíci +1

    Sir aapka padhane ka style bahut hi majedar hai...👌

  • @shaharyarranjha3397
    @shaharyarranjha3397 Před 3 měsíci

    Samjh a gya sir ap puray CZcams per Ak wahid teacher ho Jo acha prhata or sekhata hai love to you

  • @ankushthakur2177
    @ankushthakur2177 Před měsícem

    Bhut maza aaya sir ji....pure knowledge
    Learning:
    React Control the UI
    React Says, do whatever you want, but i will control the UI for the App. So that if AnyValues changes i can update that in all the places wherever it is used

  • @nehakaler6677
    @nehakaler6677 Před měsícem

    Finished this 5th lecture on 13 June. Started in the morning and going for more (absolutely loving it). Will update on every lecture after this.

  • @MinhalHaider-fw7wf
    @MinhalHaider-fw7wf Před 2 měsíci

    Bht behtreen series banayi hai sir

  • @nehabansal370
    @nehabansal370 Před 4 měsíci

    Very rightly said sir, any topic can be better understood, when we the need of it. Thankyou so much sir for making each and every topic so easy.

  • @user-pn8kj1sf3z
    @user-pn8kj1sf3z Před 2 měsíci

    literally i never saw any video with such indepth explanations really hope this channel goes viral

  • @rashmi_t
    @rashmi_t Před měsícem

    Hitesh Sir , you are an excellent teacher. Your way of teaching is simple and clear. And your Smile 😊❤

  • @michealdas198
    @michealdas198 Před 17 dny

    Sir, your explanation is really Good. I am enjoying watching your series

  • @commandesktop
    @commandesktop Před 23 dny

    Your concept explanation is best, i can't stop smiling when i understand the concept behind ...

  • @popli10
    @popli10 Před 3 měsíci

    One of the best teacher i have ever learnt from

  • @swastikyadav9829
    @swastikyadav9829 Před 4 měsíci

    How you explain these concepts so easily and clearly is what makes you a great teacher

  • @AnUnintentionalDev
    @AnUnintentionalDev Před 13 dny

    Kya analogy h yaar, Australia vs India and cricket, maza hi aa gya
    1 hi toh dil h Hitesh sahab kitni baar jeetoge, jeeyo ap hazaar saal ❤🎉
    #zabraExample

  • @Create_With_Amit
    @Create_With_Amit Před 3 měsíci

    Thanks for making this level course free, today I am learning a lot with his help, so thank you Hitesh sir.

  • @Waleed._.Ahmed.
    @Waleed._.Ahmed. Před 4 měsíci

    The approach you take for explaining is just amazing ❤🎉

  • @watchout-ov3cz
    @watchout-ov3cz Před měsícem +1

    you are like a gps working for giving direction to new ones in this changing tech world

  • @IshanSingh360
    @IshanSingh360 Před měsícem

    Both badiya kar rhe ho bhaiya
    Epic Playlist ✨

  • @webDev524
    @webDev524 Před 3 měsíci

    You are the best teacher in the youtube and method of teaching is extremely good.

  • @arifnaikwadi1838
    @arifnaikwadi1838 Před měsícem

    Sir ab tak mene React ke 5 videos complete kiye he but aapne jis tarahse videos banaye hai. Lots of love and blessings sir. Aapke reply ka wait rahega sir....thank you very much ❤❤

  • @user-jp9jd6el1f
    @user-jp9jd6el1f Před 2 měsíci

    Sir literally your teaching style is awesome

  • @RajShaw-h7x
    @RajShaw-h7x Před dnem

    Sir aapka hook wala example sun ke maza aa gaya
    mereko bhi har baar Hooks sun ke Hook pull yaad aata😄

  • @LotusNeft
    @LotusNeft Před měsícem

    12:35 you got my attention sir. The best react video. Thank you for your videos and support .

  • @satyamdhamne3541
    @satyamdhamne3541 Před 3 měsíci

    Nice way of explaining use of hooks .

  • @ajsklandsoftverse_1824
    @ajsklandsoftverse_1824 Před 4 měsíci

    Great! just great way of learning the concepts. Thank You ! Hitesh Sir!

  • @AmanKhan-wx5xo
    @AmanKhan-wx5xo Před měsícem

    You are the best teacher for react in the CZcams because you learn how to work in the industry level projects. Thank you so much sir for this amazing series 😊😊

  • @SalmanMalik-w2x
    @SalmanMalik-w2x Před 19 dny

    The best thing about you is, {I know you are a Champ coder} but the beauty is you are far better Teacher than a Coder. This is a deadly combination brother | Sir | Mentor | Guru ji | ❤

  • @adityamondal9531
    @adityamondal9531 Před 3 měsíci

    Bohot maja aya sir aur apka assignment bhi complete ho geye sir

  • @Prince-hy9ng
    @Prince-hy9ng Před 2 měsíci

    when i saw your video of any any concept i did not understand completely but after watching videos 2nd time all concepts clears automaticallly and i never forgot about taht concept ❤

  • @TechGenius24x7
    @TechGenius24x7 Před 3 měsíci

    sir you are the best teacher i ever seen!!!👍

  • @SayantanHack
    @SayantanHack Před měsícem

    Such a deep and base level video thanks for making this kind of content. Hindi me ayse content is not available anywhere. Please dont make this private.

  • @sanketgupta1000
    @sanketgupta1000 Před 2 měsíci

    Really great. Thank you very much for what you are doing ❤

  • @sagarikasahoo1044
    @sagarikasahoo1044 Před 4 měsíci

    Greattt Explanation!!! Thank you so much🙌

  • @sunil.noob.1404
    @sunil.noob.1404 Před měsícem

    Best Series On CZcams Till Date!!

  • @user-wt8qm9rv1f
    @user-wt8qm9rv1f Před 3 měsíci

    Thanks a lot bhaiya! These videos really help to clear basics of react

  • @pranavprakash6333
    @pranavprakash6333 Před 24 dny

    Your teaching is admirable, sir.

  • @amarjytchahal
    @amarjytchahal Před 4 měsíci

    @chaiaurcode
    Sir at 21:15
    useState can work with "const"
    but it gave an error, because you re-declare "counter" in line number 18. re-declare of any const variable will give error.
    if we will put it like this useState(counter+1), it will work with const also.
    your way of explanation is very impressive.
    Thank you, for such quality content.

  • @ShashikantBharti-gc5cw
    @ShashikantBharti-gc5cw Před měsícem

    Bahut maza aa rha hai react sikhne me, aapse

  • @gobindabarman8339
    @gobindabarman8339 Před měsícem

    Apka samjhane ka tarika achcha hain sir.. ❤❤

  • @atctradingcenter4381
    @atctradingcenter4381 Před měsícem

    Thank-you sir
    React ke naam se hi mujhe dar lagta tha aaj se dar khatam ho gaya
    or ye easy lagne lga

  • @VishalKumar-ls2ve
    @VishalKumar-ls2ve Před 3 měsíci

    Amazing video, loved this lecture.

  • @corunesbhatti
    @corunesbhatti Před 2 měsíci

    one of the best course on CZcams for React js

  • @kushalmonika2881
    @kushalmonika2881 Před 2 měsíci

    Thank you sir ,acche se samajh aaya Jo aaj apne padhya