#typescript
Read more stories on Hashnode
Articles with this tag
Inversion of control is a design pattern. I will explain this with an example. Let's write a class Car with a drive method: class Car { drive():...
JavaScript has types. But, those types are not strictly enforced. We have to use type guards in our code. There are three types of type guards. To...