JavaScript bootcamp · Lab 04

Even or odd

easyIf Else8 minLesson: If Else

Read the question, write JavaScript on the right, then Run or Check.

QuestionHint and solution stay closed until you open them

Read one integer and log even or odd (lowercase).

The remainder operator % is the tool: an even number leaves remainder 0 when divided by 2.

Input. One line: an integer (may be negative).

Output. The word even or odd.

Examples

Example 1
Input
4
Output
even
Example 2
Input
7
Output
odd
Hint
  1. n % 2 === 0 is true for even numbers.
  2. A ternary reads well: n % 2 === 0 ? "even" : "odd".
Show correct code

Peek only after you have tried. You can still Check your own version.

const n = Number(readLine());
console.log(n % 2 === 0 ? "even" : "odd");
main.jsconsole.log · readLine() · Ctrl + Enter
ResultIdle
Run to see output. Check grades the tests.