The void operator is a unary operator that is used to return undefined when evaluated. It is often used to discard the return value of a function.
For example, if you call a function that returns a value, but you do not need that value, you can use the void operator to discard it.
let result = someFunction();
// do something with result
// discard the result
void someFunction();