DEV Community

Discussion on: Refactoring: My 6 favorite patterns

Collapse
 
awakeel profile image
Abdul wakeel

Switch statement itself sometime bound you, we can use factory pattern to return the desire class object ;)

Thread Thread
 
brycedooley profile image
Bryce

Thanks, Abdul. Could you provide an example of what the code might look like? Most factory functions I've seen still involve a switch statement or a series of if/else statements.