Answer:
function appendEvens( arr1, arr2) {
for (let i in arr1){
if (i%2 == 0){
arr2.push(i);
}
}
}
Explanation:
The defined javascript function "appendEvens" is a function that returns undefined. It accepts two arrays and pushes the even numbers from the first array to the second.