7 Awesome TypeScript Types You Should Know

Поделиться
HTML-код
  • Опубликовано: 14 сен 2023
  • These have saved me so much time in building out my apps, so I thought I'd share them with you. Hopefully they'll save you just as much time and nerves instead of figuring out all this yourself lol.
    Matt Pocock explaining the Prettify Type: • Prettify for Classes
    -- my links
    Next.js SaaS: www.splitter.gg/
    Discord: / discord
    GitHub: github.com/joschan21
  • НаукаНаука

Комментарии • 89

  • @kendanieleramiscal4923
    @kendanieleramiscal4923 8 месяцев назад +17

    Another Typescript type, which is not included in the video, is the Pick type, which is the opposite of Omit. Instead of Omitting the property, you include the properties to be picked.

  • @sire_ns
    @sire_ns 9 месяцев назад +30

    I'll always appreciate these TS videos any day of the week

  • @timderks5960
    @timderks5960 8 месяцев назад +10

    Man, there's a LOT of information in here I never even heard of, but is pretty much exactly what I need, super cool. This would be a great video to add chapters to btw:
    0:00 Intro
    0:18 typeof / keyof
    1:21 ReturnType / Awaited
    2:59 Prettify (and nesting)
    4:07 Partial / Required
    5:58 Omit / Exclude

  • @DevoidFX
    @DevoidFX 6 месяцев назад +22

    The Prettify type should not exist. It should be a typescript configuration option.

    • @maxk5540
      @maxk5540 5 месяцев назад

      it is good until you are really need to have an object

    • @xinaesthetic
      @xinaesthetic Месяц назад

      The semantics of what the higher level types are defined as is relevant information.

  • @froxx93
    @froxx93 9 месяцев назад +29

    The exclude util is not necessarily used for more complex types. It's for excluding types from union types in general instead of omitting props from an object type. So you could also use it to exclude e. g. string literals

  • @chrise.3114
    @chrise.3114 9 месяцев назад +1

    Great stuff Josh! Please never stop posting new content!

  • @kesoBJJ
    @kesoBJJ 9 месяцев назад +16

    updateTodo example has a bug... you need to prefix fieldsToUpdate with ... if you want to override the todo, otherwise you will create an object with additional fieldsToUpdate property, which contains the values that should be used for updating.

  • @Nabulio85
    @Nabulio85 8 месяцев назад

    Great explanations, very well illustrated. Thanks

  • @shreyas0924
    @shreyas0924 9 месяцев назад +1

    We need more videos like these!! Great video buddy

  • @aselivra
    @aselivra 9 месяцев назад +1

    Fantastic video, simple, well explained and to the point. Great examples 👍

  • @ravinrod
    @ravinrod 9 месяцев назад +1

    Wow! These are good TypeScript tips. Thank you!

  • @GambitVil
    @GambitVil 9 месяцев назад +1

    Really nice, short but with so many good and important things video.

  • @lakhveerchahal
    @lakhveerchahal 6 месяцев назад

    These are super cool tips. Thank you for sharing them

  • @rahimco-su3sc
    @rahimco-su3sc 9 месяцев назад

    thanks a lot , we are constantly learning from your videos ! ,keep going

  • @Thassalocracy
    @Thassalocracy 9 месяцев назад +23

    I'll never understand why interfaces hide their fields like it's something shameful lol. That Prettify type will save millions of developers including me.

    • @julian_handpan
      @julian_handpan 9 месяцев назад

      Bc it’s and interface 😂 not and object…

    • @mandokir
      @mandokir 9 месяцев назад +1

      Javascripters trying to understand object orientation.

    • @Netrole
      @Netrole 9 месяцев назад +1

      It used to be that way. But people complained that it is confusing and convoluted to see the result of the union when a union of preexisting types is made, instead they wanted to see which types the union is made of.

    • @vitvitvitvitvitvitvitvit
      @vitvitvitvitvitvitvitvit 9 месяцев назад

      ​@@Netrole what hellll. i think would be pretty usefull show the type and your fields.
      Like:
      title: string;
      description: string;
      role: Role <
      { name: string, i
      id: number }
      >

    • @tylim88
      @tylim88 9 месяцев назад

      it is useful in creating branded type

  • @dominikrodler8010
    @dominikrodler8010 2 месяца назад +1

    One of the rare examples where a rather clickbaity sounding video really delivers 👍

  • @njihiamark6926
    @njihiamark6926 9 месяцев назад

    great stuff Josh!

  • @luccaparadeda1985
    @luccaparadeda1985 9 месяцев назад

    Great video as always

  • @nidhish6966
    @nidhish6966 9 месяцев назад

    This helped me a lot, Thanks !

  • @elliottchong
    @elliottchong 9 месяцев назад

    Super helpful! Thank you :)

  • @vorkosiganhs
    @vorkosiganhs 8 месяцев назад

    Amazing tips!! Thx a lot!

  • @LeLaboDeHarry
    @LeLaboDeHarry 9 месяцев назад

    So useful thank you!

  • @carlosricardoziegler2650
    @carlosricardoziegler2650 9 месяцев назад +1

    Great content :) I ❤ typescript

  • @petarkolev6928
    @petarkolev6928 9 месяцев назад

    Wow! Thanks, Josh 🍻🍻

  • @solosdev6946
    @solosdev6946 2 месяца назад

    Thanks Josh helps alot for us :D

  • @TheIpicon
    @TheIpicon 9 месяцев назад

    great video!

  • @maxwebstudio
    @maxwebstudio 9 месяцев назад

    Nice one ! Thanks !

  • @jagdishpadeliya6050
    @jagdishpadeliya6050 9 месяцев назад

    Very helpful 🔥

  • @Leyksnal
    @Leyksnal 9 месяцев назад

    The best thing i have learnt today

  • @raymondmichael4987
    @raymondmichael4987 9 месяцев назад

    Thanks buddy 😊

  • @Renzo-of3yn
    @Renzo-of3yn 9 месяцев назад

    Josh, would be great if you make a video about the skills a junior developer should have to get their first job. THANKS 4 all your content.

  • @HtetMyat79
    @HtetMyat79 9 месяцев назад

    Very greate video thanks

  • @elormtsx
    @elormtsx 9 месяцев назад

    awesome pretty helpful!

  • @JacksonDiKey
    @JacksonDiKey 9 месяцев назад

    About Exlude is mind-blowing! Tnx

  • @cookieman.19
    @cookieman.19 9 месяцев назад

    This tutorial is valuable

  • @matthewbeardsley7004
    @matthewbeardsley7004 9 месяцев назад

    Yep, nice!! Thanks heaps!

  • @vaibhav5783
    @vaibhav5783 9 месяцев назад +1

    This is more complex than learning rust or c or go. Anyway great video :)

  • @arifulhaque3236
    @arifulhaque3236 9 месяцев назад

    That's tips & tricks of Ts is time saving❤

  • @HG-wu6eb
    @HG-wu6eb 9 месяцев назад

    thank you
    let God bless you for your kind activity

  • @abdulgaffarabdulmalik4333
    @abdulgaffarabdulmalik4333 4 месяца назад

    Do you mean no matter how nested they are or no matter the number of Joins? Great video btw

  • @user-og9np8hp1h
    @user-og9np8hp1h 9 месяцев назад

    It is usefull to me thanks!

  • @muradmesteliyev5651
    @muradmesteliyev5651 9 месяцев назад

    I wonder will you have a video about a project with bun?

  • @stasyanje4225
    @stasyanje4225 22 дня назад

    Being mainly a Swift developer I'm left shocked by TypeScript versatility

  • @kilo.ironblossom
    @kilo.ironblossom Месяц назад

    Prettify is now a vscode extension

  •  9 месяцев назад

    Master

  • @latch909
    @latch909 9 месяцев назад +1

    I’m a bit confused when writing a function in TS aren’t we meant to declare the return type in the function declaration? When would you need to infer the return type??

    • @DavidWMiller
      @DavidWMiller 9 месяцев назад +1

      This question is kind of backwards. Why would you want to define it? If you can infer it, the types are done. Your code defined them. Manually defining is redundant extra work.
      There are cases where you might not want to infer them, but those are the ones you'd need reasons for, which is the opposite of your question.

    • @danieljanjanocha7178
      @danieljanjanocha7178 9 месяцев назад

      Let’s assume there is a function that returns an array of some kind of ingredients. In useState you want to declare that you want to keep array of some ingredients, but you start with an empty array. How to type the useState without knowing the return type of that function if you don’t wave the type specified elsewhere? It looks like an edge case but I can see a need for it sometimes

    • @gnack420
      @gnack420 9 месяцев назад +1

      ​@@DavidWMiller no lol, declaring the return type is beneficial because a reader can see what the function returns without having to interpret the function.

    • @diegofernandocobacruz6508
      @diegofernandocobacruz6508 8 месяцев назад

      ​@@gnack420Typescript shows you the inferred type when hovering the function name. No need for reading the code

    • @XxOsirisxX
      @XxOsirisxX 5 месяцев назад

      @@diegofernandocobacruz6508 The IDE does that, not TypeScript. Open it on a notepad and hover it over.

  • @T25de
    @T25de 9 месяцев назад +1

    Fuck yea
    Nice one ☝️

  • @lanskaba3668
    @lanskaba3668 9 месяцев назад +2

    Our brother always take us from darkness to light .
    Thank you Josh 🙏

  • @ahmedkhairydev
    @ahmedkhairydev 8 месяцев назад +1

    Great types, you just forgetting `Pick` 👀

  • @johnconnor9787
    @johnconnor9787 4 месяца назад

    3:45 Matt Pockock is a TS Ninja. He has a great channel. So as I understand he contributed to TS and created this type?

  • @meka4996
    @meka4996 9 месяцев назад +1

    I think you can replace all "interface" with "type"

  • @tobiasnickel3750
    @tobiasnickel3750 6 месяцев назад

    I wonder IS prettify could make typescript faster. Maybe not self implemented but As A buildin type. Because of then could avoid looking up complex structures.

  • @LabhamJain
    @LabhamJain 5 месяцев назад

    You should have added Pick as well since you showed omit

  • @Ultrajuiced
    @Ultrajuiced 9 месяцев назад +4

    5:46 Errr... and what will be the return type of updateTodo again? 😝
    Looks like somebody forgot another spread operator: ...fieldsToUpdate

  • @shubhamrawat7895
    @shubhamrawat7895 9 месяцев назад

    type Person = keyof typeof obj
    type Return = ReturnType
    Partial
    Required
    type Omitted = Omit

  • @alasassi5889
    @alasassi5889 9 месяцев назад

    Do u think ai will replace us one day

  • @realQuaz77
    @realQuaz77 9 месяцев назад +2

    This is not good. We are adding production code to augment IDE assists. I get why it exists, but this is something that should be supported by TS and the tool chain by default.

    • @simotasca
      @simotasca 7 месяцев назад

      thats true
      one thing that can be done is "tsc --noEmit --incremental --watch" and that at least shows the errors in the console

  • @aashiqahmed5273
    @aashiqahmed5273 6 месяцев назад

    prettify is good one

  • @manit77
    @manit77 5 месяцев назад

    this is good to know, but you don't need any of this besides making things more complex and harder to debug.

  • @sammy709
    @sammy709 9 месяцев назад +2

    The first example doesnt make a lot of sense. Why would you want Person to be either the string literal "name" or "age"

    • @IneyeGabriel
      @IneyeGabriel 9 месяцев назад

      It's just an example probably not the best one. But is super handy when you want to keep track of all keys within an Object or Enum

    • @sammy709
      @sammy709 9 месяцев назад

      @@IneyeGabriel I know the feature is useful, but the example makes it more confusing

  • @laturdaily5110
    @laturdaily5110 9 месяцев назад +1

    ReturnType
    Awaited
    Partial
    Required
    Omit
    Exclude

  • @AlanMeile
    @AlanMeile 5 месяцев назад

    & {} wtf

  • @JakeAndDaddy
    @JakeAndDaddy 7 месяцев назад

    Good content, but you need to slow down with the delivery.
    I'm an expert at other languages but only just kept up with it.

  • @NatoBoram
    @NatoBoram 9 месяцев назад

    Aaaaand the prettify type was fake :/

  • @greendsnow
    @greendsnow 9 месяцев назад +8

    sorry but this is not a high quality content...

    • @allone258
      @allone258 9 месяцев назад +14

      sorry but this is not a high quality comment

    • @juanps2721
      @juanps2721 9 месяцев назад +3

      That Prettify type makes the video high quality

    • @danieljanjanocha7178
      @danieljanjanocha7178 9 месяцев назад

      Like every developer finds a bug once in a while 😂

  • @DamirSecki
    @DamirSecki 8 месяцев назад +1

    can you please, pretty please, extremely please... not pronounce OUR as or and more like hour? (just phonetically like a-uaer, and not o-ur ... I don't know whay is this so annoying to me... but drives me nuts :)