API request and V8 engine | chai aur

แชร์
ฝัง

ความคิดเห็น • 1K

  • @malayakumar7188
    @malayakumar7188 ปีที่แล้ว +274

    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 ปีที่แล้ว +46

    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)

  • @whatappstatus6937
    @whatappstatus6937 หลายเดือนก่อน +2

    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 🎉

  • @aakritismn
    @aakritismn ปีที่แล้ว +33

    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 9 หลายเดือนก่อน

      Hope you do better in your life ahead

    • @AyushRaj-rr1hc
      @AyushRaj-rr1hc 5 หลายเดือนก่อน

      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

  • @Alearner-world
    @Alearner-world ปีที่แล้ว +50

    @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 ปีที่แล้ว +4

      Bhai button kaha hai

    • @oumpatel024
      @oumpatel024 11 หลายเดือนก่อน +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 10 หลายเดือนก่อน +2

      Thanks bhai!

    • @TradingTales
      @TradingTales 8 หลายเดือนก่อน +2

      not worrked

    • @UnknownError-f9j
      @UnknownError-f9j 5 หลายเดือนก่อน

      @@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 😟😟

  • @HumairaMaqbool-t2l
    @HumairaMaqbool-t2l ปีที่แล้ว +13

    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.

  • @mollahasim9987
    @mollahasim9987 ปีที่แล้ว +28

    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 ❤

  • @MOHDUMAIR-p5y
    @MOHDUMAIR-p5y 8 หลายเดือนก่อน +4

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

  • @ayandippaul3108
    @ayandippaul3108 7 หลายเดือนก่อน +14

    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 🥺

    • @kshitizsingh5625
      @kshitizsingh5625 5 หลายเดือนก่อน +4

      but you are still the product

  • @syedaamnarafi2803
    @syedaamnarafi2803 2 วันที่ผ่านมา +1

    i would like to say this series is just like a wowwwwww...... its boom my carrer as frontend developer.... i watch alot of series but Hitesh sir clear eavery thing in depth... clear our all concepts.... dil se bhttt shukriya...

  • @amit16_01
    @amit16_01 6 หลายเดือนก่อน +3

    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.

  • @Shams_Tabrezii
    @Shams_Tabrezii 13 วันที่ผ่านมา +2

    I wasted my 2.5 years watching many tutorials never had understanding of actual implementation of Js untill I found this series 🥺🥺
    Now finally after this series i can turn to react 😊

  • @adhiraj2461
    @adhiraj2461 10 หลายเดือนก่อน +3

    00:06 Kamal is teaching in-depth JavaScript in a free TH-cam series
    01:57 API is a means of communication between different systems.
    05:38 The object has two properties: 'result' and 'info'
    07:20 Making API requests and the use of Fetch in JavaScript
    11:01 AJAX request is sent using the XMLHttpRequest object.
    12:55 Understanding how to make API requests in JavaScript
    16:54 Understanding the process of tracking state changes in JavaScript
    18:44 Understanding the context in JavaScript
    22:18 JSON is used to convert a string to an object and can be used for extracting followers and creating a card with photo and follower accounts.
    24:04 The V8 engine is written in C+plus and provides debugging tools and AP access.
    27:18 Learn how to use the console in the browser inspector element
    29:04 Summary

  • @gautam_mehtaa
    @gautam_mehtaa 3 วันที่ผ่านมา +1

    Dear Hitesh Choudhary Sir,
    I want to extend my heartfelt gratitude to you for teaching me JavaScript. Your guidance, patience, and expertise have been invaluable in helping me grasp complex concepts and build a strong foundation in coding. Your dedication to teaching and your ability to simplify intricate topics have made learning an enjoyable and rewarding experience. Thank you for your constant support and encouragement, which has greatly boosted my confidence and skills in JavaScript. I look forward to applying what I've learned and continuing to grow as a programmer, all thanks to your exceptional mentorship.
    Warm regards, Gautam Mehta

  • @anmolvashisth5809
    @anmolvashisth5809 11 หลายเดือนก่อน +7

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

  • @FahimUniverse
    @FahimUniverse 26 วันที่ผ่านมา +1

    Watching video 39; I can say it's one of the best course, better than any paid course. Thank you so much

  • @nainsirajput037
    @nainsirajput037 6 หลายเดือนก่อน +3

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

    • @unbeatablesachin
      @unbeatablesachin 6 หลายเดือนก่อน

      kitna lecture dakh lia ho abhi tak

  • @Dhruvfit
    @Dhruvfit 2 หลายเดือนก่อน +1

    Sir bohot jada confidence agya h javascript me apke videos dekh kr bohot easily explained h

  • @shubhamrathod9249
    @shubhamrathod9249 9 หลายเดือนก่อน +5

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

  • @banditkov2453
    @banditkov2453 ปีที่แล้ว +3

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

  • @soniyaprasad77
    @soniyaprasad77 ปีที่แล้ว +35

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

    • @chaiaurcode
      @chaiaurcode  ปีที่แล้ว +17

      You're most welcome 🤗

  • @anikettikkal1232
    @anikettikkal1232 หลายเดือนก่อน +1

    Bahot badiya series hai sir... Bahot achhe se padhate ho aap. Thank you so much ❤

  • @SumiTShArmA-sp4ih
    @SumiTShArmA-sp4ih ปีที่แล้ว +4

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

    • @chaiaurcode
      @chaiaurcode  ปีที่แล้ว +3

      Thanks and welcome 🤗🙏

  • @aayanshisharma3857
    @aayanshisharma3857 10 วันที่ผ่านมา +1

    this series is the best js series ever ; topics are clear and practical oriented

  • @shoaibhasan4026
    @shoaibhasan4026 ปีที่แล้ว +14

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

  • @ArslanAhmed
    @ArslanAhmed 10 หลายเดือนก่อน +2

    I successfully accessed API data for the first time in my life! This feels like a significant achievement for me, and credit goes to your excellent teaching style. When you were explaining 'Console.log,' I was looking at your face in sheer amazement. It's rare to find someone who makes complex topics so understandable. Your passion for teaching truly shines through.

    • @physchopath8742
      @physchopath8742 10 หลายเดือนก่อน

      Hey i couldn't understand what sir has taught in this lecture can you tell me from where else should I get my basics cleared for this video? Please

    • @physchopath8742
      @physchopath8742 10 หลายเดือนก่อน

      @ArslanAhmed

  • @Rishav786
    @Rishav786 ปีที่แล้ว +41

    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 😊

    • @dynamiczonex
      @dynamiczonex ปีที่แล้ว +3

      keep going bro

    • @amirkhansk0911
      @amirkhansk0911 ปีที่แล้ว

      keep it up bro

    • @skzahirulislam2820
      @skzahirulislam2820 ปีที่แล้ว +2

      Bro did you gave any interviews. If yes then can you share your experience?

  • @pranaydas1271
    @pranaydas1271 8 หลายเดือนก่อน +1

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

  • @kritagyaprasad7230
    @kritagyaprasad7230 ปีที่แล้ว +137

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

    • @programmers3669
      @programmers3669 4 หลายเดือนก่อน

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

  • @bestahmadff580
    @bestahmadff580 6 หลายเดือนก่อน

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

  • @saqibullah7286
    @saqibullah7286 ปีที่แล้ว +4

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

  • @mr.shinchan7140
    @mr.shinchan7140 5 วันที่ผ่านมา +1

    Very HelpFull As it Clear the Concepts Throughly And Neatly Thanks Hitesh Sir For Such A Lovely Videos

  • @NaveenKrYadav597
    @NaveenKrYadav597 ปีที่แล้ว +6

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

    • @paulaneesh7
      @paulaneesh7 ปีที่แล้ว +2

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

  • @MuhammadMasood-p9r
    @MuhammadMasood-p9r หลายเดือนก่อน +1

    Learned valuable insights about ajax request. Impressive course indeed!!

  • @jags_01
    @jags_01 5 หลายเดือนก่อน +4

    amazing series sir , please make series for css also,i anybody else feels the same , make it reach our mentor

  • @OmkarShelke-w2j
    @OmkarShelke-w2j 9 หลายเดือนก่อน

    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.

  • @suryapratap_bit
    @suryapratap_bit ปีที่แล้ว +4

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

  • @mrHock86
    @mrHock86 5 หลายเดือนก่อน

    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.

  • @akyadavhere
    @akyadavhere ปีที่แล้ว +5

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

  • @Dev-Phantom
    @Dev-Phantom 9 หลายเดือนก่อน +2

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

  • @Nilkant_warle
    @Nilkant_warle ปีที่แล้ว +4

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

  • @MuhammadArslan-px1sm
    @MuhammadArslan-px1sm ปีที่แล้ว

    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

  • @IslamicPoint8210
    @IslamicPoint8210 ปีที่แล้ว +3

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

  • @deepurider3554
    @deepurider3554 ปีที่แล้ว +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.

  • @farooqaslam4238
    @farooqaslam4238 2 หลายเดือนก่อน

    ye mera phela course hai js ka lakin mujh mai itna confidence agya hai k mai kuch b kr skta ho thanks sir g love you 🥰🥰🥰

  • @aryanbhatt5934
    @aryanbhatt5934 4 หลายเดือนก่อน

    0:42 sir we are loving this series and not only this series but the whole content and knowledge you are providing. These videos are just flawless.

  • @adnanaliSDE
    @adnanaliSDE 9 หลายเดือนก่อน +1

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

  • @ratansharma8026
    @ratansharma8026 5 หลายเดือนก่อน +2

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

  • @ashok-bhaargaw
    @ashok-bhaargaw ปีที่แล้ว +1

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

  • @muteenahmad02
    @muteenahmad02 4 หลายเดือนก่อน

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

  • @kunalgupta9088
    @kunalgupta9088 2 หลายเดือนก่อน

    one of the best teacher on youtube. Keep making such videos sir. They are really helpful

  • @jointheamnaofficial
    @jointheamnaofficial 2 หลายเดือนก่อน

    Thank you souch for this series, this has finally given me confidence to build my own projects.

  • @Prernachaturvedi8720
    @Prernachaturvedi8720 5 หลายเดือนก่อน

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

  • @swapniljain7749
    @swapniljain7749 4 หลายเดือนก่อน

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

  • @SandeepDhama
    @SandeepDhama ปีที่แล้ว +2

    Sir mujhe thoda late mila aapka channel but ab bahut fast aur with notes and projects complete kar raha hoon. Dekhta hoon backend ko kab tak pakad paata hoon... 😊😊

  • @KruelGodGaming
    @KruelGodGaming 8 หลายเดือนก่อน

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

  • @stag_world
    @stag_world ปีที่แล้ว

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

  • @rohitdongare4727
    @rohitdongare4727 ปีที่แล้ว +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

  • @hriteshsaha348
    @hriteshsaha348 8 หลายเดือนก่อน

    Honestly speaking, this is better than any other course on JavaScript out there. Actually, it is far better than any paid course also. Huge respect for you, sir, for providing us this kind of in-depth content.

  • @Maya-hay
    @Maya-hay 3 หลายเดือนก่อน

    Phenomenal work, really grateful ❤, 1000 times better than paid courses. Thank you.

  • @sriramsahoo8601
    @sriramsahoo8601 7 หลายเดือนก่อน

    The best javascript series at this youtube platform...

  • @SubratoKumar-d2r
    @SubratoKumar-d2r 8 หลายเดือนก่อน

    sir aap jaiso k leye hi INDIA me software developer ki itni aachi growth hui h

  • @kcosphi
    @kcosphi 3 หลายเดือนก่อน

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

  • @himeshapatel4867
    @himeshapatel4867 2 หลายเดือนก่อน

    This course is awesome, I am waiting for NODE.JS Series. Thank you so much

  • @parmjeetmishra2
    @parmjeetmishra2 ปีที่แล้ว +1

    Wow .. The Minute you said ,,, Make a Github card. -> I pause the video and created a Github card from the api. then I resumed the video watch the rest of the lecture.
    I can't believe this.

    • @cageMK
      @cageMK 9 หลายเดือนก่อน

      kindly provide the code

  • @TARIKULISLAM-om8qf
    @TARIKULISLAM-om8qf หลายเดือนก่อน

    Hello, Hitesh Sir, I have completed the assignment. Here's below:
    const div = document.createElement('div');
    div.className = 'card';
    div.style.border = '2px solid black';
    div.style.width = '200px';
    div.style.textAlign = 'center';
    div.style.borderRadius = '10px';
    div.style.backgroundColor = 'aliceblue';
    div.style.margin = 'auto'
    div.style.boxShadow = '0 4px 8px 0 rgba(0,0,0,0.2)';
    div.innerHTML = `

    ${name}
    ${followers}
    `
    document.body.appendChild(div)

  • @PURVAPANCHAL-f6s
    @PURVAPANCHAL-f6s 8 หลายเดือนก่อน

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

  • @naruto3dit
    @naruto3dit 6 หลายเดือนก่อน

    00:06 Kamal is teaching in-depth JavaScript in a free TH-cam series
    01:57 API is a means of communication between different systems.
    05:38 The object has two properties: 'result' and 'info'
    07:20 Making API requests and the use of Fetch in JavaScript
    11:01 AJAX request is sent using the XMLHttpRequest object.
    12:55 Understanding how to make API requests in JavaScript
    16:54 Understanding the process of tracking state changes in JavaScript
    18:44 Understanding the context in JavaScript
    22:18 JSON is used to convert a string to an object and can be used for extracting followers and creating a card with photo and follower accounts.
    24:04 The V8 engine is written in C+plus and provides debugging tools and AP access.
    27:18 Learn how to use the console in the browser inspector element
    29:04 Summary
    Crafted by Merlin AI.

  • @SachinSingh-yj4vf
    @SachinSingh-yj4vf ปีที่แล้ว +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

  • @baluramk6
    @baluramk6 ปีที่แล้ว +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 🙏🙏

  • @sidrayousaf2461
    @sidrayousaf2461 11 หลายเดือนก่อน

    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.

  • @tooclose80
    @tooclose80 11 หลายเดือนก่อน

    00:06 Kamal is teaching in-depth JavaScript in a free TH-cam series
    01:57 API is a means of communication between different systems.
    05:38 The object has two properties: 'result' and 'info'
    07:20 Making API requests and the use of Fetch in JavaScript
    11:01 AJAX request is sent using the XMLHttpRequest object.
    12:55 Understanding how to make API requests in JavaScript
    16:54 Understanding the process of tracking state changes in JavaScript
    18:44 Understanding the context in JavaScript
    22:18 JSON is used to convert a string to an object and can be used for extracting followers and creating a card with photo and follower accounts.
    24:04 The V8 engine is written in C+plus and provides debugging tools and AP access.
    27:18 Learn how to use the console in the browser inspector element
    29:04 Summary
    Crafted by Merlin AI.

  • @aloksoni4328
    @aloksoni4328 9 หลายเดือนก่อน

    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.

  • @BittuKumar-wm5zb
    @BittuKumar-wm5zb 7 หลายเดือนก่อน

    Truly the best javascript series on internet.

  • @olalabroolala3030
    @olalabroolala3030 4 หลายเดือนก่อน

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

  • @kazitanim007
    @kazitanim007 10 หลายเดือนก่อน

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

  • @ayushkumar2436
    @ayushkumar2436 7 หลายเดือนก่อน

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

  • @BitFire007
    @BitFire007 8 หลายเดือนก่อน

    "Chai aur Code, your videos are the highlight of my JavaScript learning journey. Simply outstanding!"

  • @deekshatiwari9623
    @deekshatiwari9623 5 หลายเดือนก่อน

    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.

  • @niteshchaurasiya1531
    @niteshchaurasiya1531 6 หลายเดือนก่อน

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

  • @dibbyarupdutta3525
    @dibbyarupdutta3525 9 หลายเดือนก่อน

    Thank you so much Hitesh Sir, previously I used to just browse youtube and watch content. Now the only content I watch is that of software engineering. Thank you for this beautiful course for absolutely free.

    • @chaiaurcode
      @chaiaurcode  9 หลายเดือนก่อน +2

      You are most welcome

  • @danielgurus_
    @danielgurus_ ปีที่แล้ว

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

  • @suyashjain3223
    @suyashjain3223 5 หลายเดือนก่อน

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

  • @TagdaCoder
    @TagdaCoder 10 หลายเดือนก่อน

    yes Hitesh we have reached so far this video, and will complete soon. Starting React from February from this same channel.
    Thank you to Educate Us.

  • @sandeepjaiswar4990
    @sandeepjaiswar4990 5 หลายเดือนก่อน

    My finger goes to that like video as soon as I start watching the video, the best series from the best tutor

  • @atech369
    @atech369 8 หลายเดือนก่อน +1

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

  • @anasansari5038
    @anasansari5038 ปีที่แล้ว

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

  • @aakankshabamniya7769
    @aakankshabamniya7769 11 หลายเดือนก่อน +1

    Hello sir , first of all your an amazing educuator , i have learned JS from your chai and javascript but my humble request to you please aap AWS course ki playlist banaye , I really want to learn from you .

  • @salmanmughal2763
    @salmanmughal2763 ปีที่แล้ว

    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

  • @shahnwajalam5374
    @shahnwajalam5374 ปีที่แล้ว +1

    best javascript series on youtube hats off sir ❤❤

  • @NoName-vg8vf
    @NoName-vg8vf 4 หลายเดือนก่อน

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

  • @macintoshnadim
    @macintoshnadim 3 หลายเดือนก่อน

    Best series ever i have seen in js.Thanks Chai aur code

  • @priyankasaini7204
    @priyankasaini7204 ปีที่แล้ว +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 .

  • @tejashvats6811
    @tejashvats6811 11 หลายเดือนก่อน

    I can't stop myself from completing this series ,thank u sir this incredible course teaching for free.please make videos on node js also

  • @PiyushKatare-z6u
    @PiyushKatare-z6u ปีที่แล้ว

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

  • @someshkumarmishra8279
    @someshkumarmishra8279 8 หลายเดือนก่อน

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

  • @Oliver_Queen71
    @Oliver_Queen71 8 หลายเดือนก่อน

    sir you have no idea what you are doing.......Thank you for your efforts sir .....forever grateful to you

  • @stalkerhub
    @stalkerhub 6 หลายเดือนก่อน

    Bahut achhe se padhai samajh me atta hai yeha

  • @adilsheikh2735
    @adilsheikh2735 หลายเดือนก่อน

    your explanation and topic coverage is amazing and lovely sir 🤩🤩🤩

  • @dewansh108
    @dewansh108 4 หลายเดือนก่อน

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