React Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumReact
In what order do these logs appear when roomId changes from "a" to "b", then the component unmounts?
code
useEffect(() => {
console.log('connect', roomId);
return () => console.log('disconnect', roomId);
}, [roomId]);