var a = [1, 2, , , 3, , 5]; a[2] = undefined; var props = ''; for (var i = 0; i < a.length; i++) { a[i]&&(props += a[i] + ' '); } alert(props)