What value is obtained when executing the following code?
const isEven = n => n % 2 === 0; console.log(isEven(3));
0
true
1
false