Consider the following code snippet:
const numbers = [1, 2, 3, 4, 5];
const someEven = numbers.some(num => num % 2 === 0);
console.log(someEven);
What will be the output of the console.log statement?
Consider the following code snippet:
const numbers = [1, 2, 3, 4, 5];
const someEven = numbers.some(num => num % 2 === 0);
console.log(someEven);
What will be the output of the console.log statement?