Learn TypeScript Generics In 13 Minutes

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ม.ค. 2025

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

  • @Oliver-rh5bv
    @Oliver-rh5bv 8 หลายเดือนก่อน +82

    Very often it feels like - yes its totally clear and so easy - when watching videos like this.
    Then we go back to work and in most cases our problems are more complex and they still need some time to get around that barrier in the head and apply what we just have learned.
    I tought myself the generic stuff by using it in my daily work and I still keep watching videos like this to learn about the very edgew cases - the smart little things I missed in the documentation documents in the web.

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

      Hey Oliver, how much of Generics are you using on a daily basis or monthly basis when developing with TS?
      I just finished learning the basics of TS and I'm under the assumption that 80/20 principle applies here.
      80% of typescript development comes from 20% of the core fundamentals such as type inference, type annotation, unions, and function return types.
      Past that, are generics SUPER DUPER important to use or can we take them lightly and just not focus too much ?

    • @Oliver-rh5bv
      @Oliver-rh5bv หลายเดือนก่อน

      ​@@hassansyed6087 Generics have become an important part in my daily work. But we use them with care. Once you are into them and you understand them things can get very fast very complex, if you over-use them.
      Most common part to use Generics is when you have a method with a switch case in it, just switching between types of the same kind (implementing some interface). In this case you might want to introduce a generic method where your generic type is something like function myFunction(T myTypeInstance) { /* ... */ }

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

      the generics mostly are used for something for example. T, R which T makes the input and R is the output. If you have multiple you can pass T input U some intermediary result and R , the actual result. Then a generic is overloaded as a non generic (replacement). Whilst for the user the interface is generic. In that way you can re-use the same func for multiple cases of the same sort of category.

  • @afrotechtips
    @afrotechtips ปีที่แล้ว +48

    Whenever I find it very hard to grasp a concept, I run to this channel. You are the GOAT

  • @waseemtahir6740
    @waseemtahir6740 10 หลายเดือนก่อน +13

    This is shortest and the best explanation of generics in TS. Thanks for this Kyle.

  • @gyros9162
    @gyros9162 ปีที่แล้ว +19

    This is the shortest and best explanation generic types and functions I've ever saw

  • @Martin97perussini
    @Martin97perussini ปีที่แล้ว +94

    Excellent, you honored the "simplified" to your name with this video, really easy to understand this way

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

    I was baffled by Generics in the docs & other tutorials. This is incredibly helpful and clear. Thank you.

  • @NLJ-r9y
    @NLJ-r9y ปีที่แล้ว +5

    Really need your nextjs course, Kyle!!!

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

    Nice clear explanation - so many people get tied up in knots trying to explain generics.

  • @ANANDYADAV-sc1se
    @ANANDYADAV-sc1se 2 หลายเดือนก่อน

    He is really a Beast at explanations. Making complex things simple and crisp.
    You are really doing a great job bro. Keep doing it for us.

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

    I have not started watching this but when I saw the video, I said if I don’t understand this concept after watching your videos then I can never understand it from anywhere else. Already seeing positive comments so 😅fingers crossed 🤞

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

    The best drops of knowledge in video I ever seen! Congratulations, man! And thank you very very much

  • @AtaurRahman-vm1uz
    @AtaurRahman-vm1uz 9 หลายเดือนก่อน +3

    Probably the best video for generics in youtube. Hats of man.

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

      is it a joke?

    • @AtaurRahman-vm1uz
      @AtaurRahman-vm1uz 8 หลายเดือนก่อน

      @@true227 Why do you think its a joke? Simple explanation.

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

    Dude, this is exactly what I needed, amazing video! 👏👏👏

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

    I needed more info on generics and I had already signed up for the react course on webdev. I'm glad I purchased the course on typescript. The extra info in your course was exactly what I needed to guide me through a basic understanding of generics.

  • @SirojiddinMirzayev-zy3pl
    @SirojiddinMirzayev-zy3pl 8 หลายเดือนก่อน

    You are the one of the teacher who I know in TH-cam , I did not understand until I watched this video why we needs typescript

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

    This video is a great introduction to generics! Generics can be a confusing topic, but this video breaks it down into clear and easy-to-understand concepts. I especially liked the way he showed how to use generics with API responses. This is a common use case for generics, and it was helpful to see how to create a generic API response type that can be reused for different API endpoints.

  • @crvlwanek
    @crvlwanek ปีที่แล้ว +50

    The type system in TypeScript is so much more expressive than other languages. It has great inferencing, keyof for derived types, even ternaries for narrowing/filtering types

    • @arshiagholami7611
      @arshiagholami7611 ปีที่แล้ว +11

      You need an expressive type system to support types in a dynamic scripting language.

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

      @@arshiagholami7611actually not, for example python type system is very basic.

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

      @@oscarljimenez5717 python doesn't have a type system. it's a type hint for your IDE.

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

      @@arshiagholami7611 Rust has even more expressive type system than TS, and it's a static typed language

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

      @@ElektrykFlaaj no it doesn't, i've coded in both languages for years and I can tell you typescript's type system is way more complex for obvious reasons. I love rust tho 😇

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

    Simply the best explanation of TypeScript generics out there. Kyle, you're a legend. Thanks for making these videos 🙏🏻

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

    Very good introduction. One thing I would recommend for people just starting to learn this, do not even start naming generic parameters with single letters, be expressive. You may start out with a simple type where it's clear what 'T' is, but after a few weeks it has T, R, E, O and W. And a month later you have no idea any more what each of the letters are supposed to mean.

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

    Wow, this is the first time I feel like I understand what Generics type is. BIG THANK YOU!

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

    I watched several videos on this and I get rusty with It sometimes. you perfectly explained it.

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

    Idk how, but I always understand what you are saying and what ur trying to teach. English is my 2nd language and when I watch other tutorials it feels like WTH it's not understandable. But when I watch your videos it feels like this is so ez

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

    I enjoyed this. Thanks for clarifying. I actually use this but never knew I was implementing a generic type system.
    Learnt new stuff today.

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

    Goodness me, and you're not even cutting the video every time! Cheers, mate!

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

    Dude thank you very much. You are literally a God

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

    I'm currently learning Typescript and struggled a lot getting used to the syntax and trying to figure out what must be passed in to remove all these errors even though the code is correct with plain react/javascript. Thanks Kyle, this will assist me tremendously going forward.

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

    Wow this actually exactly what I need to clean up some messy types in my current project.

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

    Man, after watching all kinds of your videos I am now convinced you are the one to explain the monads!

    • @fifty-plus
      @fifty-plus ปีที่แล้ว

      Monads are easy but often over complicated. th-cam.com/users/shortsC2-ljnsckrs?si=cHTDnp5xmdRE_b9f

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

    Just an amazing 12 minutes of content. Thank you so much

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

    Cool thumbnail. That was the exact emotions I was going through before seeing this video :) Thank you for the video

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

    brief and get to the point, really appreciated

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

    I just realised how much i needed this video. Good work.

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

    Very good! Thanks! Could you cover how I can use types, interfaces, enums to replace the JavaScript constants during code migration

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

    so amazing! it's really easy to understand 😄

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

    Hey @kyle,
    That is an awesome video.
    I wanted to point something in your last example regarding object. The value of new Date() would resolve to `object` so that might not work well. I think a more robust definition for an object would be Record or something along those lines. What are your thoughts?
    And thanks once again for another great video.

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

    Thank you very much for always simplifying very well this kind of typescript concepts :D

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

    Thank you so much, your explanation was really easy and helpful!

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

    short and concise, i always come back to refresh my memory

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

    At 4:02, you pass to tell it what the generic value passed in should be. Makes sense.
    At 4:37, you seem to be passing in... the return type? querySelector, now input is of type HTMLInputElement.
    so which is it, the type passed in or a return type?

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

      If you pause at 4:42, you can see that the generic is placed after the semicolon, meaning the return type.
      At 4:02, Kyle specifically use the generic for the parameter passed in.
      So it can be both. It is just a matter of how and where you define it

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

      The generic type can be used anywhere in the function, either in the input arguments, the return type, or even both. For example:
      function foo(a: T) { return "foo" }
      function bar(a: T): T { return a }
      function getFoo(obj: { foo: T }): T { return obj.foo }

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

    best webDev channel. Thanks)

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

    I like thinkin of generics as just a way to pass in types to a function or another type. kinda like how you’d pass in parameters to a function.

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

    Great video so far! Thanks Kyle as always! 👍

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

    Loved your explanation!!! 😁

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

    great video! finally got a better idea on how generics work. I had the basic notion but never understood them like this. They are kinda placeholders for a type(s).

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

    Love to see you simplifying the crazy webdev today everything build on top of everything. This mess starts to kill me.

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

    This was great, now I need to understand when you get to that point where you see stuff like T extende keyof K or something like that

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

    great explanation!

  • @sergiom.954
    @sergiom.954 ปีที่แล้ว

    Great video! 👏I have been working with typescript for 3 years (angular) and I didn't even know this generic types possibilities.

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

    Amazing video... Really helpful!!

  • @Amanrauniyar-dm7in
    @Amanrauniyar-dm7in 11 หลายเดือนก่อน

    brother your next level thankyou for all these

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

    Easy explanation ,Simplified the explanation of generic type easy to understand.

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

    Great content, well explained.

  •  ปีที่แล้ว

    You really do the web dev simplified!!!😀

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

    Nicely explained, it just fit into my mind. Thanks.😊

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

    as soon as i get a job and my first salary i am buying your course . no shitting . btw that's real nice of you that you make a discount for people in such countries as russia , etc

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

    Amazing! Clear and helpful

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

    bro, you just explained it so well! Now I don't hate generics that much. My only issue was that for some reason you need to put generics between the name and the parenthesis. I was trying to use it for svelte 5 props and was doing: let {name} = $props() and had no idea why it wasn't working. fyi you need to do it $props()

    • @joe-skeen
      @joe-skeen ปีที่แล้ว +5

      I think that choice came from other C-family languages that also use the same syntax for generics, like C# and Java to make it more approachable and intuitive for those developers. But for someone that hasn't worked with strongly typed languages in the past, they are understandably intimidating

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

    Great video kyle, Please cover keywords like Infer, As and Satisfy in Typescript. Thank you.

  • @david.thomas.108
    @david.thomas.108 9 หลายเดือนก่อน

    Super informative video thanks 👍

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

    Thank you for clarifying this!

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

    Informative but i got confused at the end

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

    Rally good one .. Keep it up..!!

  • @fifty-plus
    @fifty-plus ปีที่แล้ว +14

    Its a better practice to name your generic arguments prefixed with T, like TModel, TRequest, etc. like we do in C#. Yes it's Hungarian-like but it works well to distinguish generic arguments while keeping them explicit and descriptive.

    • @ivan.jeremic
      @ivan.jeremic ปีที่แล้ว +2

      Hungarian-like. What does that even mean?

    • @fifty-plus
      @fifty-plus ปีที่แล้ว +3

      @@ivan.jeremic Hungarian notation.

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

      Marking your type in TS with T, makes code messy IMO.

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

    Think of generics like functions for types, the generic takes a type as an argument. Once you think of it like that… it’s easy

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

    it was so fun to watch this

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

    long time no see Kyle, as always great content. 👍👍👍

  • @rajviahmed-r7c
    @rajviahmed-r7c ปีที่แล้ว

    Great tutorial. Your explanation is awesome.

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

    AMAZING!!!!🙌🙌👋👋👋

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

    perfect , and thanks bro

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

    Thank you, brother :)

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

    Typescript generics explained well

  • @ThangPhan-q3u
    @ThangPhan-q3u 8 หลายเดือนก่อน

    Thank you so much, I really appreciate it :)

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

    Any video that shows all the keyboard typing shortcuts, many of which were used here and went over my head?

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

    Very helpful, Thanks

  •  ปีที่แล้ว

    thank you a much, I love your courses

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

    Great video and explanation as always, I really like your video tutorials... but TS still feels like overkill in most use cases I've seen.

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

    Would love to see a video about what stuff makes typescript’s inference not work

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

    very good stuff, thanks!

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

    really good explanation

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

    Brilliant video, as usual

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

    Thanks for these tips Spider-Man

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

    Short question about generics.
    When I have this type:
    export type TExtensionConfig = {
    oExtClass: TExt;
    oExtConfig?: ConstructorParameters[1];
    };
    How look's the array type for this?
    Background. I woul'd like to have a settings object who have a property "aExtensions".
    Each extension object should have a property called "oExtClass" for defining the extension class and an optional property called "oExtConfig".
    Each array item can have another extension / another generic class.
    The extension class is a abstract.
    Thanks.

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

    My favorite part of this video was learning that I've already been using Generics everywhere and had no idea that's what they were called.

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

    Great video, thanks for kyle

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

    Thanks for making it happen, do you do blazor, any content references?

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

    Great video!

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

    Never used this, but it seems useful.

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

    Thanks a lot for this!

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

    You sir, are a hero

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

    Thank you! You know how to explain

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

    Already good with generics, this is a decent coverage of them.

  • @fuadagayev-mg7fk
    @fuadagayev-mg7fk 10 หลายเดือนก่อน

    Best Generics explain one of!

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

    I don't know man. I would say that it gonna use extends a lot when using generics... Every time I neede an explicit generic, half of time is with extends... Great video by the way...

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

    Is Typescript really necessary? I have not wrapped my head around why there is a use to make code more complex just to make sure you are using the correct type of variables. I mean... I know what my variables are intended to be when I create them and when I use them later. So I'm not sure of the whole point of TS.

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

      JSDocs is a good alternative if you feel that way

  • @mukullataroy2195
    @mukullataroy2195 ปีที่แล้ว +121

    Ahh generics.... My worst enemy

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

    Thanks!

  • @HungNguyen-vi4rr
    @HungNguyen-vi4rr ปีที่แล้ว

    8:00 no no, it is smart enough to force you to put the Generic Type there.
    If it automatically generated / inferred types there, Generic Type would be useless there: no validation errors, it works as 'any' type all the way :)).
    They need Generic Type to acknowledge that what type you want to validate "data"

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

    Amazing 🎉

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

    i wish you were a private tutor!

  • @d-princecoder4031
    @d-princecoder4031 10 หลายเดือนก่อน

    great simplification