Categories
Opinions Testing

What is Refactoring?

Some ideas for this post have been taken from Jordan Powell talk on Angular Tiny Conf. The goal of refactoring is to improve internal code by making many small changes without altering the code’s external behavior. Improve Code by When Should Code Be Refactored? After Deployment After delivering feature, and before new task, revisit the […]

Categories
Angular NGRX Opinions Tutorials

NGRX Actions & Unexpected Enum Bug

Enums are set of named constants. Their ability to create a set of distinct cases makes it best option to use with our ngrx reducers. We use those enums to represent NGRX actions as