TypeScript bootcamp · Lab 03

Even or odd

easyIf Else8 minLesson: If Else

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

QuestionHint and solution stay closed until you open them

Read one integer. Log even or odd.

Examples

Example 1
Input
4
Output
even
Example 2
Input
7
Output
odd
Hint
  1. n % 2 === 0
Show correct code

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

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