API request and V8 engine | chai aur

Sdílet
Vložit
  • čas přidán 12. 07. 2023
  • Visit chaicode.com for all related materials, community help, source code etc.
    #javascript #hindi
    Sara code yaha milta h
    github.com/hiteshchoudhary/
    Discord pe yaha paaye jaate h:
    hitesh.ai/discord
    Instagram pe yaha paaye jaate h:
    / hiteshchoudharyofficial
  • Věda a technologie

Komentáře • 908

  • @malayakumar7188
    @malayakumar7188 Před 10 měsíci +213

    Time stamp
    2:00 - main API topic.
    8:40 - XML https concept(Ajex).
    21:49 - conversation to JSON Data.
    22:35 - Assignment.
    24:30 - v8 Engine.
    ❤❤❤
    Thank you so much for your content 🎉

  • @ppriyansh2327
    @ppriyansh2327 Před 9 měsíci +30

    I was just leaving every course in the middle when I was learning from other sources(even paid courses).
    Then I got to know about your series and within 15 days, I have reached completed 39 lectures
    and I will finish this before Ind vs Pak match.
    Thank you so much sir😇😇😇😇😇😇
    I have never praised anyone in the comment section as much as you ever since I am using YT (5 years now)

  • @kritagyaprasad7230
    @kritagyaprasad7230 Před rokem +112

    sir respect+++++++++++++++++++++++++++++++++++++

    • @programmers3669
      @programmers3669 Před 10 dny

      +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

  • @anmolvashisth5809
    @anmolvashisth5809 Před 7 měsíci +5

    best series jo maine ab tk dekhi h thank you for that and please aage bhi aisse hi banate rahiye......

  • @aakritismn
    @aakritismn Před rokem +22

    You changed my life, I was suffering from financial problems. I wanted to do something for my family, I wanted to fulfill basic needs, by the help of your this Series, I am raising my confidence day by day...
    Thank you so much sir 😊
    This series is very helpfull sir

    • @Ayushkumar-09
      @Ayushkumar-09 Před 5 měsíci

      Hope you do better in your life ahead

    • @AyushRaj-rr1hc
      @AyushRaj-rr1hc Před měsícem

      hope, now you have joined a company as software Engineer,
      It would be helpful if you guide me what else did you prepare for cracking a job

  • @user-gg9tk5hc2h
    @user-gg9tk5hc2h Před 4 měsíci +2

    sir jitna bhi thanx ya shukriya krna chaho to kam h pr course top notch h....

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

    not only you explained the concept intricately, but also aspired to learn from fundamental basics.

  • @user-ek6to2wf2u
    @user-ek6to2wf2u Před rokem +8

    API requests and the V8 engine are two separate concepts, but they are both relevant to web development, particularly when working with JavaScript.
    API Requests:
    An API (Application Programming Interface) is a set of rules and protocols that allows different software applications to communicate and interact with each other. In the context of web development, APIs are commonly used to request and exchange data between a client (usually a web browser or a mobile app) and a server.
    API requests are a way for the client to request specific data or perform certain actions from the server. This is typically done using HTTP methods like GET, POST, PUT, DELETE, etc. The client sends a request to the server, and the server responds with the requested data or performs the requested action.
    For example, in JavaScript, you can make API requests using various methods, such as the fetch() function or libraries like Axios or jQuery. Here's a simple example using fetch():
    javascript
    Copy code
    fetch('api.example.com/data')
    .then(response => response.json())
    .then(data => {
    // Process the data received from the API
    console.log(data);
    })
    .catch(error => {
    console.error('Error fetching data:', error);
    });
    V8 Engine:
    The V8 engine is an open-source JavaScript engine developed by Google. It is at the core of many modern web browsers, including Google Chrome and Chromium-based browsers, as well as Node.js. The primary purpose of the V8 engine is to execute JavaScript code in these environments.
    The V8 engine is responsible for translating JavaScript code into machine code that the computer's processor can execute. It uses Just-In-Time (JIT) compilation to optimize the performance of JavaScript execution.
    Because of its efficiency and speed, the V8 engine significantly improves the performance of JavaScript applications and allows developers to build complex and high-performance web applications.
    In summary, API requests and the V8 engine are both essential components of modern web development. API requests enable communication and data exchange between clients and servers, while the V8 engine optimizes the execution of JavaScript code, making it possible to build fast and efficient web applications.

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

    plz bring more such videos, there are only few youtubers who bring such in depth tutorials like you. Thank you for you efforts

  • @mollahasim9987
    @mollahasim9987 Před rokem +22

    V8 engine -- timestamp 23:18 as per Hitesh Sir , very well understanding video about console. log and story of previous API model . We will want next video very soon sir ji ❤

  • @kaushlendrapathe
    @kaushlendrapathe Před 2 dny

    29:00 "Usse dar ke thodi bhagenge usko use karenge". Absolutely right sir! This mentality will definitely not let AI take our jobs!

  • @soniyaprasad77
    @soniyaprasad77 Před 8 měsíci +29

    Allow me to take this moment to extend my heartfelt gratitude once again, specifically directed to your teaching way, Hitesh sir.

  • @ayandippaul3108
    @ayandippaul3108 Před 3 měsíci +8

    I've heard people say, "If something's free, you're the product," and it got me thinking about your videos.
    I've been quietly watching and learning from them, even though I've never commented before. Your teaching style is awesome and easy to follow. Thanks for being such a great teacher!❤
    Sir please reply 🥺

  • @ramansworld3879
    @ramansworld3879 Před 10 měsíci +35

    @22:35 Assignment
    Card HTML :

    John Doe
    Architect & Engineer

    CSS For Card
    .card {
    /* Add shadows to create the "card" effect */
    width: 500px;
    height: 600px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    }
    .container {
    padding: 2px 16px;
    }
    JS Code :
    After you fetch data :
    document.querySelector(".card img").setAttribute("src" , `${data.avatar_url}`);
    document.querySelector("h4").innerHTML = `${data.name} , Followers : ${data.followers}`;
    document.querySelector("h4").style.fontWeight = `bold`;
    document.querySelector("p").innerHTML = `${data.bio} ${data.blog}`

    • @MohsinKhan-wv3ep
      @MohsinKhan-wv3ep Před 8 měsíci +4

      Bhai button kaha hai

    • @oumpatel024
      @oumpatel024 Před 8 měsíci +1

      @@MohsinKhan-wv3ep


      Document

      .card {
      /* Add shadows to create the "card" effect */
      width: 500px;
      height: 600px;
      box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
      transition: 0.3s;
      }
      .container {
      padding: 2px 16px;
      }




      John Doe
      Architect & Engineer


      const requestUrl = 'api.github.com/users/hiteshchoudhary'
      const xhr = new XMLHttpRequest();
      xhr.open('GET', requestUrl)
      xhr.onreadystatechange = function(){
      console.log(xhr.readyState);
      if (xhr.readyState === 4) {
      const data = JSON.parse(this.responseText)
      document.querySelector(".card img").setAttribute("src" , `${data.avatar_url}`);
      document.querySelector("h4").innerHTML = `${data.name} , Followers : ${data.followers}`;
      document.querySelector("h4").style.fontWeight = `bold`;
      document.querySelector("p").innerHTML = `${data.bio} ${data.blog}`
      }
      }
      xhr.send(); // to call open()

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

      Thanks bhai!

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

      not worrked

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

      @@TradingTales



      Document

      .data {
      width: 500px;
      height: 600px;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
      transition: 0.3s;
      color: red;
      }
      .images {
      height: 15px;
      width: 20px;
      }
      .name{
      color: red;
      }










      const requestdata = "api.github.com/users/hiteshchoudhary";
      const xhr = new XMLHttpRequest();
      //console.log(xhr)
      xhr.open("GET", requestdata);
      xhr.onreadystatechange = function () {
      console.log(xhr.readyState);
      if (xhr.readyState === 4) {
      const data = JSON.parse(this.responseText);
      console.log(data.followers);
      let foll = document.querySelector(".follower");
      const name = document.querySelector(".name");
      const image = document
      .querySelector("#images")
      .setAttribute("src", `${data.avatar_url}`);
      name.innerHTML = `${data.name}`;
      foll.innerHTML = ` Follwer: ${data.followers}`;
      }
      };
      xhr.send();

      sorry for late reply 😟😟

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

    You are awesome, thank you for providing such quality for free.

  • @SachinSingh-yj4vf
    @SachinSingh-yj4vf Před rokem +1

    Urrr very good human being view bhale hi kam jti h vdios pr but jo apko jnte h o dil se apko mante h

  • @shoaibhasan4026
    @shoaibhasan4026 Před rokem +12

    I am incredibly grateful to have such an exceptional mentor who has been guiding me through the world of JavaScript. Sir teaching style is impeccable, making complex concepts seem effortless and approachable...❤❤❤

  • @Rishav786
    @Rishav786 Před rokem +40

    Love you sir, You changed my life, I was suffering from financial problems. I wanted to do something for my family, I wanted to fulfill basic needs, by the help of your this Series, I am raising my confidence day by day...
    Thank you so much sir 😊

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

    Sir aap ki videos un coders ke liye zyada faydamand hai jo basic coding jante ho
    Mai khud hi jab pahle start Kiya tha to aap ki videos utni samajh nahi aati thi fir apna college pe gaya aur wahan se thoda Sikh ke aaya to ab bahut maza aa raha hai dil guarden guarden ho raha hai ❤❤❤❤

  • @rohitdongare4727
    @rohitdongare4727 Před 11 měsíci +1

    sir Maine aaj tak konsi bhi programming related series continue nhi dekhi jitni apki dekhi, you are motivation sir for me. Thanks sir for putting your entire experience and efforts in this series , expecting same in react series. Thanks Again😇😇.. LOve from Maharashtra

  • @akyadavhere
    @akyadavhere Před rokem +5

    Thanks a lot sir... No one on YT has taught in so much depth. Thanks again for your great work

  • @NaveenKrYadav597
    @NaveenKrYadav597 Před rokem +5

    Thanks a lot a Sir🙏
    For your continuous videos on JS, we hope this is continue for ReactJS as well.🎉

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

      Your wish has been listened
      Sir has started with his Reactjs series

  • @letstry2854
    @letstry2854 Před 6 měsíci

    kya hi course banaya hi sir ji...maza aa gaya!!

  • @aakashmalviya5436
    @aakashmalviya5436 Před rokem

    bhai bhot badhiya ese concepts clear krvaye hai jo socha bhi ni tha tq and aage bhi tum esi hi bano

  • @Nilkant_warle
    @Nilkant_warle Před rokem +4

    thak you sir it''s raly better than any paid course💕

  • @saqibullah7286
    @saqibullah7286 Před rokem +3

    Sir hum bas es intizar m hoty hai kabb new video ayega 😭😭....Your way of teaching is unmatchable ❤️❤️....Love from Pakistan 🇵🇰🇮🇳

  • @MuhammadArslan-px1sm
    @MuhammadArslan-px1sm Před 9 měsíci

    0:17 g sir ap sahi farma rhe hn meine 2 series javascript ki already dekh rakhi hn lekin jitna depth mei aap parhatey hn utna koi nhi parhata . sab basic data types aur basic operation bta kr chhutti kr lete hn. Sir you are love ❤. Thank you very much for your efforts

  • @adnanaliSDE
    @adnanaliSDE Před 5 měsíci +1

    The best JS series I have learnt from so far.To the point and production grade❤

  • @suryapratap_bit
    @suryapratap_bit Před rokem +3

    Bhaiyon share bhi karo, jayda subscribers honge to video jaldi jaldi ayegi. 😅

  • @IslamicPoint8210
    @IslamicPoint8210 Před rokem +3

    Sir please start react course . You are great sir.👍👍

  • @user-iv9mx7md8q
    @user-iv9mx7md8q Před 5 měsíci

    Hitesh sir abhitak mai series bana raha hu, jab start kiya tab laga ki complete kar paunga ya nahi, itna indepth pacha paunga ki nahi, lekin start kar diya all is well bolke, aur abhi bohot confident fill kar raha hu, js me maine issse pehele bhi js kiya hai , lekin itna depth aur interview point of view se kisne bhi nahi padhaya, apne bohot indepth leke gaye hai iss series me , mai 1 saal baad series dekh raha hu, aur khud khud par khud rojana practice ka man hota hai, thanks for your efforts.

  • @ashok-bhaargaw
    @ashok-bhaargaw Před 8 měsíci +1

    Chay wale bhaiya,
    I appreciate. bahut accha content he. Thank you so much for all the videos.

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

    Dhanyawad sir ji !! Itni best content dene ke liye❤❤

  • @danielgurus_
    @danielgurus_ Před 9 měsíci

    Truly the best javascript series on internet . Thank you for making such videos

  • @shahnwajalam5374
    @shahnwajalam5374 Před 10 měsíci +1

    best javascript series on youtube hats off sir ❤❤

  • @user-rz6mb2hy7g
    @user-rz6mb2hy7g Před 4 měsíci

    mind-blowing series sir ..please make such type of content more..we will support you

  • @amit16_01
    @amit16_01 Před 3 měsíci +1

    I'm glad to learn this in 2024, since 2years before this type of content is not available in the youtube. Every youtuber just showing general concept.

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

    This is my first comment on youtube. By the way I am a developer. I just picked a random video about javascript and found your video. Your efforts are much higher. I know that it is difficult to teach others in depth about something. You are able to create that teaching environment even in the virtual world. That's great man. Thank you for this content.

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

    is video se mujhe bahut faida huya

  • @user-xg8kc2cs2p
    @user-xg8kc2cs2p Před 9 měsíci

    Thanks for the content. Really Grateful.

  • @yashrahadve
    @yashrahadve Před 11 měsíci +1

    Great job, sir! Your efforts are greatly appreciated and highly beneficial to us. Thank you for being so helpful.

  • @Niteshmaurya1234
    @Niteshmaurya1234 Před 8 měsíci

    Thank You sir very much aapne to aag laga diya youTube pe mai 8 ghante aapke hi channel par rahta hu

  • @AshwiniChoudhari-lq5yo
    @AshwiniChoudhari-lq5yo Před 4 měsíci

    need more videos like this, great work

  • @perfectcopy3895
    @perfectcopy3895 Před 11 měsíci +1

    Bhaiya this series is just Osm:)
    Aur achi achi dusri series v lao aap jaldi jaldi💯

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

    it took me 1.5 hr to grasp this video completely
    pajji tussi great ho

  • @kazitanim007
    @kazitanim007 Před 6 měsíci

    Great teaching , This series is getting more interesting day by day. Please don't stop making this kind of wonderful tutorials.

  • @Dev-Phantom
    @Dev-Phantom Před 5 měsíci +2

    Enlightening Lecture, Never knew so much stuff is behind the hood. Thanks for sharing the Knowledge, and as always Best lecture Ever.

  • @technicalrb2350
    @technicalrb2350 Před 11 měsíci

    Great Video! Thanks for being there

  • @rohankarale78
    @rohankarale78 Před 9 měsíci

    one of the best js series on youtube thank you very much Hitesh Sir....🤗🤗

  • @tarunverma8876
    @tarunverma8876 Před 6 měsíci

    thanks for this series gurudev bahot achha padaya he

  • @Instrumentation010
    @Instrumentation010 Před 7 měsíci

    So far enjoyed so much, and built enough confident to write code.

  • @SumiTShArmA-sp4ih
    @SumiTShArmA-sp4ih Před 9 měsíci +2

    Love you most sir, Thanx for your hardwork for making us JavaScript Programmer

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

    The best javascript series at this youtube platform...

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

    Continuining day 14th in javaScript. Yesterday I have started leetcode js problem solving and this course is helping me so much because of Hitesh Sir, Thank you so much sir ji for this amazing course.

  • @muteenahmad02
    @muteenahmad02 Před 29 dny

    one of the best course in javascript. Thanks very much for giving such a great and depth knowledge in Javascript. 😍

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

    best javascript series on whole youtube .. salute to this man

  • @anasansari5038
    @anasansari5038 Před 10 měsíci

    amazing way of teaching, asi videos or playlist bnaty rahiye god bless you

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

    Bahut achhe se padhai samajh me atta hai yeha

  • @stag_world
    @stag_world Před 10 měsíci

    Sir Jo cheej hamane kahi se nahi Jani vo apke pas ake itna easy samjha me agya PTA hi nahi chala ❤❤
    Love you sir ❣️❣️🙏🙏🙏

  • @swapniljain7749
    @swapniljain7749 Před 13 dny

    आपके निष्काम कर्म के लिए बहुत बहुत धन्यवाद

  • @aloksoni4328
    @aloksoni4328 Před 6 měsíci

    Your video has been very helpful to me. Even though I have 5 years of experience in web development, there is still a lot to learn. Thank you.

  • @Here.s_how
    @Here.s_how Před měsícem

    Best JS stuff out there
    thanks you very much sir
    learnt a lot

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

    Superb It a great path for Learning, Thank you for your contribution.

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

    "Marvelous Job Sir".

  • @Veecast247
    @Veecast247 Před rokem +2

    Thank you,, sir for this js series please continue in-depth videos and easy explanation difficult concepts

  • @parmjeetmishra2
    @parmjeetmishra2 Před rokem

    This series changed me drastically. now I can say in my resume , i know JS ..
    Thankyou sir

  • @sundarammishra2757
    @sundarammishra2757 Před 9 měsíci

    Sir i am following these series from very start and now i am very grateful
    to you

  • @116_ekakbasu9
    @116_ekakbasu9 Před 7 měsíci

    Thank You Soooo mucccchhhhh for such great contents sir ,learning a lot from it, Ese he help karte rahiye hamlogo ka🥰🥰

  • @HarshKumar-ff1se
    @HarshKumar-ff1se Před 6 měsíci

    Best playlist for JS .Thank u sir❤❤

  • @NoName-vg8vf
    @NoName-vg8vf Před měsícem

    I did never understand API before, thanks a lot sir.

  • @faizakashaf805
    @faizakashaf805 Před 6 měsíci

    thnx hitesh sir, this is no doubt best playlist for js

  • @olalabroolala3030
    @olalabroolala3030 Před 27 dny

    Thank you so much sir I am completing this full series, and it was amusing, one of the best series I have ever seen

  • @hardeepsingh-nd6sm
    @hardeepsingh-nd6sm Před 16 dny

    🙏Thanks for explaining in easy way!!

  • @salmanmughal2763
    @salmanmughal2763 Před 8 měsíci

    Thank you so much hitesh. Your teaching style is very dominating and we are learning slowly but our concepts are concrete. We have strong foundations and will be competent. Btayeingy sb ko hitesh se parh k aye hein. I got some data from an api from some website i dont know which one was it. I displayed specific data in my List items (Nodelist) of HTML file. I am very happy that i am learning quite fluently. LOVE FROM PAKISTAN

  • @dewanshpal7840
    @dewanshpal7840 Před 24 dny

    Sir your videos are to the point and increases confidence level 👍

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

    Congratulations For 300K Subscribers Sir!! Many More to come!!🔥🔥

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

    apna to career bn gya bhai ki videos sy 😇

  • @baluramk6
    @baluramk6 Před rokem +2

    One of the best JavaScript series❤ in hindi. Ye series pahle mil gyi hoti toh hum bhi aaj aapke sath work kar rahe hote.😆 Samajh nahin aata abhi bhi studenta aur freshers sirf java script aur react sikhne ke liye aankho par patti bandh kar mahange mahange courses aur bootcamp join kar lete hain. Jab ki best content youtube par available hain. Thank you Hitesh sir for 🙏🙏

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

    U r the best teacher on CZcams I shared ur videos in my watsapp group .. everyone starts watching ur video

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

    You are amazing I love this course series, Thankyou for sharing such amazing Knowledge. Very Thankful to you as you are sharing this for free.... so great content.

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

    all the explanation till here is master class. I have gained so much confidence on my JS skills. before this i have tried to gain Js knowledge from many other sources and failed and now i am building Ecomm website as project ... all thanks to you ....

  • @BittuKumar-wm5zb
    @BittuKumar-wm5zb Před 3 měsíci

    Truly the best javascript series on internet.

  • @rakshitchopra2612
    @rakshitchopra2612 Před 11 měsíci

    Sir one of the best and in depth course of javascript

  • @CodewithBhatti
    @CodewithBhatti Před 27 dny

    Awesome Content sir. Love to learn from you ❤

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

    Amazing series' on javascript.... Thanks to hitesh sir

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

    we really fill happy to be an indian where there have such a people who had a good heart for helping needy students

  • @rubulkb527
    @rubulkb527 Před 8 měsíci

    thankyou sir for this great Javascript series🤩🤩😍😍

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

    best javascript course in the youtube
    thank you sir ❣❣

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

    Aisa superb video paid coarse me bhi nhi hota , Thank you very sir .

  • @FilmFinds01
    @FilmFinds01 Před 3 dny

    Thank you hitesh bhai

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

    Thank you very much sir!

  • @sidrayousaf2461
    @sidrayousaf2461 Před 7 měsíci

    Really sir we can't learn too much in any paid course as we learned in this course, I have watched all series videos competelty and now I am 100 percent confident to write a javascript code happily, Thanks a lot sir you are great man, may God bless you.

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

    Bahut sara dhanyawad sir ❤

  • @MeenakshiBisht-wz9rs
    @MeenakshiBisht-wz9rs Před 11 dny

    Thank you bhaiya for this amazing series ❤

  • @100k_krdo_bhai
    @100k_krdo_bhai Před 2 měsíci

    you r making simple nd sorted thank u very much!

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

    I don't have words to thankyou. I tried to learn javascript from many sources , but everytime It seemed to me that I can't learn it , it is not for me, but after watching your series, I am a bit emotional🥺 , don't have words to express my feelings , feeling blessed . Thankyou sir🥳 for creating such an insightful course for students like us .

  • @user-rg7bi1qp2l
    @user-rg7bi1qp2l Před 10 měsíci

    one of the best series of javascript on internet. sir please java pr bhi series banaiye. it gonna really help us.

  • @user-tc3pk7mq1j
    @user-tc3pk7mq1j Před 7 měsíci

    Thank you sir alot for giving us such wonderful course here in youtube. You are a hero for all engineering students, you are helping students with a lot of quality teaching.

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

    bahut bahut dhanyavaad sir!

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

    sir, you are great.....really wonderful series