1holes_and_undefined: { 2 input: { 3 x = [1, 2, undefined]; 4 y = [1, , 2, ]; 5 z = [1, undefined, 3]; 6 } 7 expect: { 8 x=[1,2,void 0]; 9 y=[1,,2]; 10 z=[1,void 0,3]; 11 } 12} 13 14