#programming-blogs
Read more stories on Hashnode
Articles with this tag
Why we need Interfaces The interplay between Interfaces and Classes is how we will get a strong code re-use in TypeScript. Interfaces create a new...
Generics are like function arguments, but for types in class and function definitions in TypeScript. Generics always allows us to define the type of a...
What is a Decorator In this blog we will look into what is the purpose of adding decorators in TypeScript code. We will go through the definition, the...
Assuming you have concepts of classes and how we declare classes in TypeScript, we will look into how we are going to write a CSV filer reader class...
Classes As we all know classes are blueprints of some real world entity with some values and some methods to represent that entity. It promotes code...
The following blog covers the OOP concepts such as classes, inheritance, prototype inheritance Class vs Instance Class is a factory which can produce...