Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Checking if a Number is Even and Positive | Conditional Statements
Introduction to JavaScript
Sectionย 3. Chapterย 12
single

single

bookChallenge: Checking if a Number is Even and Positive

Swipe to show menu

Task

Swipe to start coding

Write a program that checks whether a given number is even and positive. Use an if statement with the logical AND (&&) operator to check two conditions:

  • The number is greater than 0 โ†’ num > 0.
  • The number is even โ†’ num % 2 === 0.

If both conditions are true, display: "The number is positive and even."

Otherwise, display: "The number does not meet the criteria."

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Sectionย 3. Chapterย 12
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt