The output

Report a typo

const numbers = [5, 10, 20, 30, 40];

console.log(numbers.filter(checkNumber))

function checkNumber(number) {
  return number >= 10;
}

What will this method output to the console? Write the correct numbers separated by a single space.

Enter a short text
___

Create a free account to access the full topic