Java -Filterarray durch sogar Zahlen
function even(t) {
return t.filter(function(x){ return x % 2 == 0; });
}
Gentle Giraffe
function even(t) {
return t.filter(function(x){ return x % 2 == 0; });
}