You don't need void 0
In JavaScript code, especially in older legacy code, you sometimes find the expression void 0.
The void operator evaluates an expression and returns the primitive value undefined. void 0 evaluates 0, which does nothing, and then returns undefined. I...
p42.hashnode.dev3 min read