void

JSstatementexpressionoperatorunary ⟩ void

let counter = 0;

// ⭐ void: discard return value
const count = () => void counter++;
const count2 = () => { counter++ };    // same as above

count(),    // undefined
counter,    // 1

count2(),   // undefined
counter++,  // 2

Last updated

Was this helpful?