What value is printed when the following code is executed?
const arr = [1, 2, 3, 4, 5];
const filtered = arr.filter(x => x > 3);
console.log(filtered.length);
What value is printed when the following code is executed?
const arr = [1, 2, 3, 4, 5];
const filtered = arr.filter(x => x > 3);
console.log(filtered.length);