Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Determining Size | Conditional Statements
course content

Course Content

Introduction to JavaScript

Challenge: Determining SizeChallenge: Determining Size

Task

Create a program that outputs "LARGE" or "SMALL" based on the given number:

  1. A number is considered large if it is greater than or equal to 100.
  2. A number is considered small if it is less than 100.
  3. You can assign any number to the variable num.
  1. Use the if and else keywords.
  2. Utilize the >= comparison operator.

Everything was clear?

Section 4. Chapter 4
course content

Course Content

Introduction to JavaScript

Challenge: Determining SizeChallenge: Determining Size

Task

Create a program that outputs "LARGE" or "SMALL" based on the given number:

  1. A number is considered large if it is greater than or equal to 100.
  2. A number is considered small if it is less than 100.
  3. You can assign any number to the variable num.
  1. Use the if and else keywords.
  2. Utilize the >= comparison operator.

Everything was clear?

Section 4. Chapter 4
some-alt