void.js (118B)
1 function f() { 2 var b, c; 3 var a = void ( b = 5, c = 7 ); 4 return a; 5 } 6 assertEq(typeof f(), "undefined")