var arr = [1, 2, 3, 4]; var filtered = arr.filter(function(element, index, array) { return (index % 2 === 0); });