so effect is a constructor, and ! is a way of exec...
# arrow
p
so effect is a constructor, and ! is a way of executing it, an alias to
bind
s
So basically we should use
effect
when passing down the side effect to the edge of the world and when we want to execute it we should call
.bind()
on it?
👌 1