September 24, 2019 0 Comment Generics in TypeScript In TypeScript Generics allows us to pass a range of types to a function or component. We can call it Abstract Type. JavaScript, TypeScript
September 24, 2019 0 Comment TypeScript Readonly Property TypeScript allows us to make an individual property readonly. When we use readonly, we can’t assign them with other variables, can’t update or delete. JavaScript, TypeScript