Design Patterns In TypeScript — Strategy
How to isolate different variants of an algorithm within an object using the Strategy Pattern
3 min readJul 4, 2021
--
The Strategy Pattern is a popular design pattern used to organize as well as and encapsulate algorithms. This pattern is used when is necessary to isolate the business logic of a class from algorithm implementation details that may not be…