Lecture 11 : Classes & Objects | JavaScript Full Course

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

ความคิดเห็น • 457

  • @shradhaKD
    @shradhaKD  ปีที่แล้ว +207

    Hope you enjoy learning about object oriented programming using JS ❤
    Note - at 13:32 I meant to say object, not class.

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

      Yes mam

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

      ❤️❤️❤️

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

      BIG FAN YOUR TEACHING IS SO NICE 😍

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

      First reply 😅

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

      Thank you for your dedication..... huge respect mai aur Mera Bhai dono coding Sikh rhe... kucch din baad admission bhi lunga

  • @muhammadzulqarnain2025
    @muhammadzulqarnain2025 9 หลายเดือนก่อน +40

    #1:00:42
    Here, I have to add an important point.
    Example #1
    const person = {
    name: "John",
    country: "USA",
    city: 'New York',
    dispaly: () => {
    console.log(`This is ${this.name} from ${this.city}, ${this.country}`)
    },
    }
    person.display()
    output:
    This is from undefined, undefined
    Example #2
    const person2 = {
    name: "John",
    country: "USA",
    city: 'New York',
    dispaly() {
    console.log(`This is ${this.name} from ${this.city}, ${this.country}`)
    },
    }
    person2.display()
    output:
    This is John from New York, USA
    In JavaScript, regular functions (like display() in the second example) have their own this binding that depends on how they are called. When we call person.display(), this inside the function refers to the person object.
    However, arrow functions behave differently. They don't have their own this binding, instead, they inherit it from the surrounding context where they are defined. In the first example, the arrow function is defined within the object literal. At that point, this refers to the global object (usually window in browsers). And here this.name will return an empty string because it is the windows' property which gets/sets the name of the window's browsing context. That is why the output of first example is "This is from undefined, undefined", instead of "This is undefined from undefined, undefined".
    So, don't use an arrow function as a method of an object. Instead, use a regular function.
    Thanks

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

      Added an important point bro! thanks

  • @AmanKumar-oj1ks
    @AmanKumar-oj1ks ปีที่แล้ว +103

    0:40----Start
    16:42---Classes
    25:35-----Constructor
    32:00--Inheritance in JS
    40:42----Super Keyword
    48:30----Practice set
    56:00---Error handling

    • @cwm161
      @cwm161 6 หลายเดือนก่อน +5

      thanks it really helped me!

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

      Kisi ne poocha?

    • @ADITYAXYZ.
      @ADITYAXYZ. 4 หลายเดือนก่อน +3

      @zohaibmanzoor3173 hn bhe mene pucha

  • @Ishaan_malik
    @Ishaan_malik 11 หลายเดือนก่อน +103

    Please REACT.JS ka aisa hi course bana do 🙏🏼 you’ve helped me alot. Jaisa aap samjhaate ho, Vaisa TH-cam pe aur koi nhi karr paa rha. Huge respect.

    • @52_dev_.panditt
      @52_dev_.panditt 11 หลายเดือนก่อน +2

      Haa didi

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

      Han didi ,please react.js course aur bna do

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

      yes

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

      150 rupee's lungi

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

      React please!!!!!!!

  • @shresthshukla3061
    @shresthshukla3061 11 หลายเดือนก่อน +4

    00:01 Understanding classes, objects, and inheritance in JavaScript.
    02:07 Creating and working with objects in JavaScript
    06:07 Understanding prototype and object creation in JavaScript
    08:34 Understanding prototypes and inheritance in JavaScript
    12:43 Classes and objects allow for creating reusable functions and properties for multiple instances.
    14:39 Understanding classes, objects, and prototypes in JavaScript
    18:52 Understanding class, methods, and properties in JavaScript
    23:00 Understanding class properties and creating objects
    26:48 Custom constructors can be created in JavaScript to perform specific tasks.
    30:04 Understanding the role of constructor in object creation
    34:42 Classes create a blueprint to define and reuse objects, reducing code repetition.
    36:27 Understanding classes and objects in JavaScript
    40:51 Using super keyword to call parent class constructor
    42:46 Calling super constructor is essential in JavaScript inheritance
    47:04 Super keyword is important for inheritance and method invocation in JavaScript
    48:57 Creating a User Class in JavaScript
    53:08 Creating a new class and implementing inheritance in JavaScript.
    55:22 Classes and objects in JavaScript with error handling
    59:08 Understanding classes, objects, inheritance, and error handling in JavaScript

  • @Paradoxgaming607
    @Paradoxgaming607 3 หลายเดือนก่อน +76

    React Js par Full Course kon kon chahtha hai ?

  • @Hardik_Kamaliya5978
    @Hardik_Kamaliya5978 10 หลายเดือนก่อน +19

    🫵Like and comments for REACT.JS Course form Shradha didi. Students are very excited ❤❤❤

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

      8 months hogayay still waiting

    • @gamingexpress9249
      @gamingexpress9249 13 วันที่ผ่านมา

      you guys should move on to other React courses on youtube. If you keep waiting, all your peers will advance and you guys will still be waiting

  • @namitadas5194
    @namitadas5194 11 หลายเดือนก่อน +12

    This is best video on classes and inheritance on youtube. I have watched many videos. But none of them explain with such clarity. Thank u shradha mam

  • @ahmedsuriya3588
    @ahmedsuriya3588 11 หลายเดือนก่อน +55

    React js ka course bana dein please aap bht acha samjhati hain

  • @KAMALPRATAPSINGH--THAKUR
    @KAMALPRATAPSINGH--THAKUR 26 วันที่ผ่านมา

    We make exact timestamp this lecture,
    1:15 __ 16:35 Prototype,
    16:35__25:34 Basics about class.
    25:35__32:00 Constructor in Js
    32:01_40:41 Inheritance
    40:43_ 48:31 Super keyboard

  • @akashpassi6571
    @akashpassi6571 ปีที่แล้ว +47

    After JavaScript please start ReactJs.

  • @Future_software_enginneer
    @Future_software_enginneer ปีที่แล้ว +8

    Topic covered in this video
    Class
    Object
    Methods
    Constructor
    Inheritance
    Method overriding
    Error handling
    Super

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

    Now we all are master in java script🎉

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

      Not now abhi advance topics baki hai hope didi uspe video bna de

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

      @@jhonsnow534 mtlb jitna padhaya h usme to hogye na

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

      ​@@shivangrana2006abhi jab API ke baare me padhayengi vo thoda hard ho jata he smghne me

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

      @@nomatterff8918 yes bro

    • @You-Tube-up3zq
      @You-Tube-up3zq 10 หลายเดือนก่อน +2

      Mujhe to kuch samjh nai aaya 😢

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

    maam you are the best teacher found on youtube to make students understand easily by answering some easy practice questions, where students can understand the real use of the concept you taught in the class

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

    Every one in this world love you ❤❤❤❤❤.u know why.becz you gave us normal line path track to remove small
    Resistor in front of my path,to strong skills ❤❤❤❤❤❤

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

    Didi lecture 4 tak bohot easy tha Lecture 5 se thoda tough laga but apka explanation itna acha ha ap bina samjhaye koye bhe part chodte nhe ho...
    Thanks for your valuable efforts for us...

  • @MohsinAli-if7zg
    @MohsinAli-if7zg ปีที่แล้ว +5

    Her way of teaching is very simple and clear.If anyone just starting to code or complete beginner just follow her. Excellent teacher💯❤

  • @dileepverma9230
    @dileepverma9230 11 วันที่ผ่านมา

    Thanks🙏 Because you explain the programming language in very simple language.

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

    I watched this video 😊❤ thankyou mam you are doing really. Great things for us ❤

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

    mam apne bohat ache se sikhaya sab kuch samajh me aya sab douts clear hogay THANKS❤

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

    After javascript please start React js❤🎉

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

      Yes

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

      ok

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

    Yes didi,we enjoy while learning via ur lectures. Thank you so much for your efforts. It means a lot to us ✨😇.

  • @PankajP8L
    @PankajP8L ปีที่แล้ว +13

    Because of this chapter I was stuck in JS, the Udemy instructor could not explain the way you have explained. Thank you so much for explaining OOP in easiest way : )

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

      Which Udemy instructor?

    • @RajveerSingh-zg9vd
      @RajveerSingh-zg9vd 11 หลายเดือนก่อน +3

      everyone could not explain as good as shradha Mam can😅

  • @visitor_t-w3p
    @visitor_t-w3p 7 หลายเดือนก่อน

    MARVELLOUS video... bohat accha samjhaya hai Shradha sister... I enjoyed it a lot

  • @muhammadmubeen861
    @muhammadmubeen861 ปีที่แล้ว +9

    Hi mam, thank you for creating an easily understandable JavaScript playlist😊

  • @K.K965
    @K.K965 2 หลายเดือนก่อน

    you are among the best teachers on youtube.the way in which you explain concepts is really amazing.

  • @AtforYou-o8v
    @AtforYou-o8v ปีที่แล้ว +2

    Easiest js tutorial ever ❤ Thanks mam

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

    Very fantastic, Honestly speaking never found any clear video than this, your teaching skill is phenomenal. Thank you so much for making such super quality lectures❤❤❤❤

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

    Miss your content is really one of best even better than many course content on Java script, May you flourish and be more versatile and successful.

  • @ANIMALLOVERS-fh5np
    @ANIMALLOVERS-fh5np ปีที่แล้ว +4

    Didi you are hope for me lot of love from pak

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

    Once again Shradha at her best. You made this godforsaken and complicated topic very easy to understand. Wish there was another lecture just to cover errors. That said I really enjoyed this entire lecture. Took almost 2 hours to code along and follow the lecture. Very impressive!

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

    I understood the actual concept of error handling properly for the first time. Thank you so much ma'am.

  • @visitor_t-w3p
    @visitor_t-w3p 7 หลายเดือนก่อน +1

    Very very nice shraddha bonu, I learned a lot...

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

    This massege is very motivated me
    "KEEP LEARNING AND KEEP EXPLORING"

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

    Thankyou mam for explaining in a simple and clear way🤝

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

    ❤❤❤❤❤❤Thank U Ma'am for this JavaScript series ❤❤❤❤❤❤❤❤

  • @indian-shorts9215
    @indian-shorts9215 ปีที่แล้ว +1

    Please complete every concept mam your teaching style is on another level

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

      Hi can you help me please

  • @vishalpawar-dm6fv
    @vishalpawar-dm6fv หลายเดือนก่อน

    Thank you Mam for your valuable time and lecture ❤

  • @AbhayKumar-kv8zs
    @AbhayKumar-kv8zs หลายเดือนก่อน

    didi you were the giving best explanation in every part of the video and topic or clear explanation .

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

    Very nice series Shraddha Mam..!!! Thanks!!!

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

    Thanks a lot maam for teaching us complete js

  • @suboohikhan-h9x
    @suboohikhan-h9x 2 หลายเดือนก่อน

    you are so nice ❤thanks for teaching us ❤❤❤

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

    Nice mm thanks I learn deep slowly slowly

  • @shahinshaikh3311
    @shahinshaikh3311 11 หลายเดือนก่อน +3

    Mam please start React.js❤

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

    I am happy... learning javascript here with happily

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

      Hi

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

      kaya ap mari ak choti se help kary ga bhai g please

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

      @@raoabubakkar sorry yaar! Maine dekha nhi message btao kya krna hai.

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

      bhai ma pakistan sa hn or mujhy kuku fm ka premium membership lana ha jo pakistan sa ni lag raha agar ap laga do to bhoot mehar bani ho ge please bhai ma ap ko phely pasy send kar do ga please bhai kar do@@ravindrakumarmaurya7809

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

    plss Mam Start React After This we are Waiting For this Course

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

    Your way of teaching is very clear and straight to the point. Are you not covering advance topics. If not, please do the needful.

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

    Good Evening ma'am

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

    Hi Shraddha Mam, i m really big fan of your, Can you please create a playlist of react js as well. Aap Bhut hi accha samjhati hai

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

    Doubt:
    When we inherit we can use parent methods on objects. For example, 38:05 We used eat() on Engineer; here eat() was a Person Class Method.
    Bur, Later we are told that we need to use super to access Parent Class Methods??
    Can you please explain this further.

  • @AhmedRaza-ty7zq
    @AhmedRaza-ty7zq 10 หลายเดือนก่อน +1

    Awesome video😎😎👍👍

  • @MohitParmar-r6e
    @MohitParmar-r6e 7 หลายเดือนก่อน

    Thanks.... Mam this video is very helpfull❤

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

    you are the best teacher for finacial weak students..thanks alot from dept of my heart
    React js bhi esa bnado..complete ReactJs

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

    Present mam 🙋

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

    Thanks for sharing valueable content

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

    You're a great teacher, thanks

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

    I have a question at 54:50
    Why do we need to create a constructor in Admin class?
    I am able to pass the argument of name and email without creating a constructor in Admin class and without calling the constructor using super keyword.
    I am new in javascript, am I missing something here ?
    Ex : let admin1 = new Admin("Div", "div@123");

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

    Thanks shraddha ❤

  • @tarun-l6p
    @tarun-l6p 8 หลายเดือนก่อน

    23:01 par brand naam ka Variable to ToyotaCar class me hai hi nhi phir this.brand kaise kaam kar raha h

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

    Requesting for React JS video from your side

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

    Didi aap bahut hi achha padate ho. Hum chahate hai app hum sabhi ko isi tarah se padate, sekhate raho.
    Thank you so much didi ji.❤❤

  • @NoAccount-n5u
    @NoAccount-n5u 9 หลายเดือนก่อน

    What is prototype ? Why it is used ? How it is helpful in clean code ?
    Hack to access any element properties officially using console ?

  • @HrishShetty-qe8sd
    @HrishShetty-qe8sd ปีที่แล้ว +1

    Didi thanks for giving your precious time for making the series. Didi please also add DSA in this series.

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

    Apki channel baki sab channels ko pichhe chhorne wali hain mam❤ best wishes🥰

  • @continnum_radhe-radhe
    @continnum_radhe-radhe 11 หลายเดือนก่อน +3

    Thank You .

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

    Through practice questions , classes inheritance and super etc makes more sense

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

    hme jarurat hai apki lecture ki
    ap bhot acha padhati hai

  • @Rehangujjar-dv6ww
    @Rehangujjar-dv6ww 5 หลายเดือนก่อน

    best coder Shradha Khapra

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

    thank u so much madam for the exceptional lecture love from pk

  • @sayyedabdulmannan7018
    @sayyedabdulmannan7018 20 วันที่ผ่านมา

    Setting the prototype is alternate of inheritance, right? Ex:- childClass.__proto__ = parentClass;

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

    Beautiful concept !!🤩🤩🤩🤩🤩🤩🤩

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

    Thanks for the lecture Didi! It was really very helpful. It would be great if you also share the code snippets alongwith the slides in the google docs.

  • @LizanSarkar-e5e
    @LizanSarkar-e5e 11 หลายเดือนก่อน

    cathch error problem solved mare pach bohoti valo lagrahahai . may bangladesh se hoo 🥰

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

    Glad to be the first one ☺️

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

    Concept is really confusing for me yet ,but really good explanation ma`am

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

    Mam please make the complete playlist of node js like javascript its reallg need and helpful for us please

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

    object oriented programming is much more understandable in C# than in javascript

  • @AniketKumar-h2i
    @AniketKumar-h2i 9 หลายเดือนก่อน

    Thanks for wonderful video. You explain the topic in easy manner.
    And if you share the code which you write in your video. it's more beneficial for learners.

    • @shadik.bhai32
      @shadik.bhai32 9 หลายเดือนก่อน

      check discription

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

    Thank you very much....

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

    Please make a course on Springboot 🙏

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

    Ma'am kindly zoom the screen for looking properly all code

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

    Finally understood ❤❤❤

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

    Didi i love this series ❤❤❤

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

      Hi

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

      mujhy ap sa ak choti se help chayia please

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

      @@raoabubakkar yes tell me..

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

      @@motivateyourself212 sir g ma Pakistan sa hn or mujhy kuku fm ka premium membership chayia yaha sa purchase ni ho raha kaya koi asa traiqa ha jo ma Pakistan ma rha kar usy subscribe kar sakhyo please bta do bhai

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

      @@raoabubakkar Haa bolo kya help chahiye?

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

    Thank You mam❤

  • @KSBallvardhan-n3v
    @KSBallvardhan-n3v ปีที่แล้ว +3

    Mam could u make a daily base detailed dsa videos for placement just like js after this js course, pls humble request. Thank you.

  • @KaranParmar-n1h
    @KaranParmar-n1h หลายเดือนก่อน

    @shradhaKD Mam We want to learn to react in detail as well next js.........I hope you will make a tutorial for that 😊

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

    Excellent 👌

  • @AkashYadav-di6kd
    @AkashYadav-di6kd 8 หลายเดือนก่อน

    Thank you very much, didi.

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

    16:30 apne apne hote hain

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

    ma pakistan sa hn mam ap ka students bhoot acha padhati ha ap mam

  • @kamaleshpramanik7645
    @kamaleshpramanik7645 24 วันที่ผ่านมา

    Thank you very much Madam ..

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

    Mam react js video please

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

    We want all lesson in one full video

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

    instead of using try/ catch , do we have any library in javascript like Lombok from which we use sneakythrows annotation instead

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

    mam proto ke badle me agar hum har new objet me caltax ko call kare toh bhi same he na?

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

    Didi, after JS, please start React JS.

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

    didi kya aap javascript me dsa ka course TH-cam me laa dakti ho kya?

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

    love from Bangladesh

  • @harshkumar.6491
    @harshkumar.6491 ปีที่แล้ว +2

    From where we can practice javascript..?
    what are the best free resorces..??

  • @CodingWithMoeen-999
    @CodingWithMoeen-999 5 หลายเดือนก่อน

    Didi please advance JavaScript pr bhi banao na😊
    Love from Pakistan 😊