You're viewing a single thread.
View all comments
145
comments
we can remove the return!
const fn = (a, b) => a || b
6 0 Replyconst fn = (a, b) => a ?? b
5 0 ReplyGotta love some peer review
3 0 ReplyBut this just creates a function. You still have to call it.
2 0 Reply((a, b) => a ?? b)();
2 0 Reply
You've viewed 145 comments.
Scroll to top