just started playing around with SolidJS and taking a look at the
createEffect function.
export function createEffect<T>(
fn: (v: T) => T,
value?: T,
options?: { name?: string }
): void;
I'm wondering what the third parameter is for and if I can access it somehow during the execution of the function being passed to createEffect. I do understand that the passed function is being called with the returned value of the last execution and that this value can be initialized with the second parameter, but what is the third parameter for?