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