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