Design Patterns In TypeScript — Factory
How to create an object without exposing the creation logic
3 min readJun 19, 2021
--
The Factory Pattern is one of the core design pattern principles for creating an object. It allows clients to create objects using a common interface. In TypeScript, there are many different ways in which you can use the factory pattern to make your code cleaner and more concise. In this article…