00:01 Generics make components reusable 01:35 Generics allow typescript functions to be more flexible and reusable. 03:07 Generics in Typescript allow accepting and returning specific types of data. 04:42 Generics in Typescript in language already existing 06:14 Using generics in TypeScript allows us to define types for input and output values. 07:55 Using generic types in TypeScript allows for flexible input and output values 09:23 Generics allow you to define reusable functions and data types 10:58 Generics in TypeScript allow for flexible and reusable data types
@mohit77174 ай бұрын
Love the summary Sir... // Summary of Abstract classes // 1. We can make abstract classes abstract classes can't create their object on their own // 2. But this help to define their class inheriting them // get a better structure of their classes the compulsory thing that you have put // 3. If we want to put some methods that are cumpulsory need to their you can make those methodds as abstract as well // 4. Incase we want to add some features bydefault by giving the methds we can give that // 5. These classes can actujlly override this method as welll but if we want that this should be like that then we need to make that method as abstrac\
@piyushtale0001 Жыл бұрын
One of the precise and easiest explanation out there. Thankyou Hitesh Sir
@subhashthenua74042 жыл бұрын
I have started from scratch of this play list and now I have came to this vedio also I have subscribed and I am not in 70% who are not subscribing 😅 I love your teaching because you are not wasting time and make long vedio. your vedios are to the point 👌 Expecting more vedios as soon as possible Thanks and love from village: nagla dagur near mathura (Uttar Pradesh) INDIA 🇮🇳
@HiteshCodeLab2 жыл бұрын
Thanks, keep supporting
@iiimiiim2 жыл бұрын
I love how you you quickly notice when you say a component some might think it's a React component. Best teacher! Thank you as always😊
@pankajmandawat45072 жыл бұрын
Super Easy Explanation about the necessity of generic and issues with any. Really appreciate all the efforts you are putting on👍
@HiteshCodeLab2 жыл бұрын
Thanks
@srinivasnahak34733 ай бұрын
You explained it in a really good way!
@OlaMovies-pj3dy8 ай бұрын
One of the best explanation I found on the internet...
@akshayramdasi2 жыл бұрын
your Jaipur setup always rocks. The TS content is great. I am using these concepts in developing a backend for a product. Many thanks.
@HiteshCodeLab2 жыл бұрын
Great 👍
@odia-sanatani Жыл бұрын
Thank you sir ! I have a lot of doubts in the generic and you just cleared it in this video.
@arghadeepmisra78652 жыл бұрын
It's cool that every video in the playlist has different thumbnail styles
@HiteshCodeLab2 жыл бұрын
Got advice from some friends to have different thumbnails, instead of same as I did with Golang series. Working well so far
@anujparashar4442 жыл бұрын
Sir, Please continue with advance typescript topics like mapped types and all which is used in complex production application.
@HiteshCodeLab2 жыл бұрын
Noted, will try
@muhammadtalha804 Жыл бұрын
I love the way u teach i.e By Referring the Documentation of something.A very Polite accent as well :)
@rod60272 жыл бұрын
when the cap is come back it means sir want to do something great towards community same energy is back
@jawadshaikh17452 жыл бұрын
Great way of teaching, Love from Pakistan ❤
@LaveshGarg2 жыл бұрын
Thank you sir for this amazing short and crisp tutorials
@mohammadmumtaz50292 жыл бұрын
Voice very clarity and subject as well.
@HiteshCodeLab2 жыл бұрын
Thanks
@digiartpassion85138 ай бұрын
What is the difference between abstract class and interface in typescript ?
@savitrirani68695 күн бұрын
Thanks
@anitjha47952 жыл бұрын
Very nice sir ji...
@HiteshCodeLab2 жыл бұрын
Keep watching
@pixiedev2 жыл бұрын
Any thoughts on this. Working file and return type is also same 😅 function identityTwo(val:any): any { return val + val } function identityThree(val:any): typeof val { return val + val } console.log(identityTwo(2)); // 4 console.log(identityThree(2)); // 4
@pixiedev2 жыл бұрын
😅 it's looks like it right but it's not because it can return anything. 🤣