docs.rodeo

MDN Web Docs mirror

Test your skills: Conditionals

The aim of this skill test is to assess whether you’ve understood our Making decisions in your code — conditionals article.

[!NOTE] You can try solutions by downloading the code and putting it in an online editor such as CodePen or JSFiddle. If there is an error, it will be logged in the results panel on the page or into the browser’s JavaScript console to help you.

If you get stuck, you can reach out to us in one of our communication channels.

Conditionals 1

In this task you are provided with two variables:

To complete the task:

  1. Click “Play” in the code block below to edit the example in the MDN Playground.
  2. Create a conditional that checks whether season contains the string “summer”, and if so assigns a string to response that gives the user an appropriate message about the season. If not, it should assign a generic string to response that tells the user we don’t know what season it is.
  3. Add another conditional that checks whether season contains the string “winter”, and again assigns an appropriate string to response.

[!CALLOUT]

You can also download the starting point for this task to work in your own editor or in an online editor.

If you make a mistake, you can clear your work using the Reset button in the MDN Playground. If you get really stuck, you can view the solution below the live output.

<section></section>
* {
  box-sizing: border-box;
}

p {
  color: purple;
  margin: 0.5em 0;
}
let season = "summer";
let response;

// Add your code here

// Don't edit the code below here!

const section = document.querySelector("section");
const para1 = document.createElement("p");
para1.textContent = response;
section.appendChild(para1);

{{ EmbedLiveSample("conditionals-1", "100%", 60) }} 

Click here to show the solution

Your finished JavaScript should look something like this:

let season = "summer";
let response;

if (season === "summer") {
  response = "It's probably nice and warm where you are; enjoy the sun!";
} else if (season === "winter") {
  response = "I hope you are not too cold. Put some warm clothes on!";
} else {
  response =
    "I don't know what the season is where you are. Hope you are well.";
}

// Don't edit the code below here!
// ...

Conditionals 2

For this task you are given three variables:

To complete the task:

  1. Click “Play” in the code block below to edit the example in the MDN Playground.
  2. Create an if...else structure that checks whether the machine is switched on and puts a message into the response variable if it isn’t, telling the user to switch the machine on.
  3. Inside the first if...else, nest another if...else that puts appropriate messages into the response variable depending on what the value of score is — if the machine is turned on. The different conditional tests (and resulting responses) are as follows:
    • Score of less than 0 or more than 100 — “This is not possible, an error has occurred.”
    • Score of 0 to 19 — “That was a terrible score — total fail!”
    • Score of 20 to 39 — “You know some things, but it’s a pretty bad score. Needs improvement.”
    • Score of 40 to 69 — “You did a passable job, not bad!”
    • Score of 70 to 89 — “That’s a great score, you really know your stuff.”
    • Score of 90 to 100 — “What an amazing score! Did you cheat? Are you for real?”

After you’ve entered your code, try changing machineActive to true, and score to a few different values to see if it works. Please note that, for the scope of this exercise, the Your score is __ string will remain on the screen regardless of the machineActive variable’s value.

[!CALLOUT]

You can also download the starting point for this task to work in your own editor or in an online editor.

If you make a mistake, you can clear your work using the Reset button in the MDN Playground. If you get really stuck, you can view the solution below the live output.

let response;
let score = 75;
let machineActive = false;

// Add your code here

// Don't edit the code below here!

const section = document.querySelector("section");
const para1 = document.createElement("p");
const para2 = document.createElement("p");
para1.textContent = `Your score is ${score}`;
para2.textContent = response;
section.appendChild(para1);
section.appendChild(para2);

{{ EmbedLiveSample("conditionals-2", "100%", 60) }} 

Click here to show the solution

Your finished JavaScript should look something like this:

let response;
let score = 75;
let machineActive = false;

if (machineActive) {
  if (score < 0 || score > 100) {
    response = "This is not possible, an error has occurred.";
  } else if (score >= 0 && score < 20) {
    response = "That was a terrible score — total fail!";
  } else if (score >= 20 && score < 40) {
    response =
      "You know some things, but it's a pretty bad score. Needs improvement.";
  } else if (score >= 40 && score < 70) {
    response = "You did a passable job, not bad!";
  } else if (score >= 70 && score < 90) {
    response = "That's a great score, you really know your stuff.";
  } else if (score >= 90 && score <= 100) {
    response = "What an amazing score! Did you cheat? Are you for real?";
  }
} else {
  response = "The machine is turned off. Turn it on to process your score.";
}

// Don't edit the code below here!
// ...

Conditionals 3

For the final task you are given four variables:

To complete the task:

  1. Click “Play” in the code block below to edit the example in the MDN Playground.
  2. Create an if...else structure that checks whether the machine is switched on and puts a message into the machineResult variable telling the user whether it is on or off.
  3. If the machine is on, we also want a second conditional to run that checks whether the pwd is equal to cheese. If so, it should assign a string to pwdResult telling the user they logged in successfully. If not, it should assign a different string to pwdResult telling the user their login attempt was not successful. We’d like you to do this in a single line, using something that isn’t an if...else structure.

[!CALLOUT]

You can also download the starting point for this task to work in your own editor or in an online editor.

If you make a mistake, you can clear your work using the Reset button in the MDN Playground. If you get really stuck, you can view the solution below the live output.

let machineActive = true;
let pwd = "cheese";

let machineResult;
let pwdResult;

// Add your code here

// Don't edit the code below here!

const section = document.querySelector("section");
const para1 = document.createElement("p");
const para2 = document.createElement("p");
para1.textContent = machineResult;
para2.textContent = pwdResult;
section.appendChild(para1);
section.appendChild(para2);

{{ EmbedLiveSample("conditionals-3", "100%", 60) }} 

Click here to show the solution

Your finished JavaScript should look something like this:

let machineActive = true;
let pwd = "cheese";

let machineResult;
let pwdResult;

if (machineActive) {
  machineResult = "Machine is active. Trying login.";
  pwdResult =
    pwd === "cheese"
      ? "Login successful."
      : "Password incorrect; login failed.";
} else {
  machineResult = "Machine is inactive. Activate and try logging in again.";
}

// Don't edit the code below here!
// ...

In this article

View on MDN