Contact: aviboots(AT)netvision.net.il
40,760 questions
53,134 answers
573 users
let nothing: void = undefined; let x: void; //let num: void = 324; // Error // Type 'number' is not assignable to type 'void'.(2322) console.log(nothing); console.log(x); /* run: undefined undefined */