array filter java dengan angka genap

function even(t) {
    return t.filter(function(x){ return x % 2 == 0; });
}
Gentle Giraffe