Please enable JavaScript to use CodeHS

Arduino & JavaScript Glossary

Flashcards

Course:

Module:

Lesson:

Search:

Condition General

A condition is code that you put inside an if statement or while-loop.

Condition

Boolean JavaScript

A boolean is a true or false value.

Boolean

Indentation JavaScript

Indentation is the visual structure of how your code is laid out. It uses tabs to organize code into a hierarchy.

Indentation

If Statement General

An if statement lets you ask a question to the program and only run code if the answer is true.

If Statement

If Else Statement General

Control structure that lets us run either one section of code or another depending on a test.

If Else Statement

Control Structure General

A control structure lets us change the flow of the code.

Control Structure loops if statements

Curly Bracket General

An open curly bracket is { and a close curly bracket is }

Curly Bracket

Parentheses General

( and )

Parentheses