Hi all! Trying to get around my head on when to cr...
# getting-started
m
Hi all! Trying to get around my head on when to create stand alone functions vs classes with methods. It makes sense to me to make classes when there's some state that needs to be mutated. However, what about just some injected dependencies that don't change? In these cases should I just use a higher order function. Or would a class be better? Thanks!