const authCondition = (authUser) => !!authUser;
The author advice to use !!authUser instead of authUser. Is there any difference between authUser and !!authUser?
const authCondition = (authUser) => !!authUser;
The author advice to use !!authUser instead of authUser. Is there any difference between authUser and !!authUser?