Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Introducing JavaScript Let's Make a Game What have you learned about programming?

structure named a conditional statement

Which of the following snippets of code is an example of a control structure named a "conditional statement."

Choose the correct answer below:

A

// add collectable items to the game
function addItems() {
  items = game.add.physicsGroup();
  createItem(375, 300, 'coin');
}

B

var currentScore = 0;

C

if (currentScore === winningScore) {
      createBadge();
}

1 Answer

Steven Parker
Steven Parker
229,771 Points

A conditional statement is one that will cause some code to run in some circumstances and not in others.

Hint: Another way to say this is that the code will run "if" a certain condition is true.