JS

JavaScript Code Output Challenge - Function iseven...

13.

What will be the output of the following code?

function isEven(number) {
  return number % 2 === 0;
}

console.log(isEven(5));

1

0

false

true