This basic command makes Karel move forward one square.
What is move();?
This symbol is used at the end of most JavaScript statements.
What is a semicolon (;)?
Why does a programmer indent their code?
.
What is?? Any of the answers below are accepted.
Helps show the structure of the code.
More manageable for other people to understand.
A key part of good programming style!
When Karel faces this direction at the start of a program.
What is East?
A reusable block of code that performs a specific task..
What is a function?
This happens when Karel tries to move through a wall.
What is an error?
JavaScript requires you to use this keyword to declare a local variable.
What is var?
This is the result of calling turnLeft() four times.
What is Karel's face in the same direction as before (makes a complete 360° turn)?
This command is not directly available in Karel but can be created using other commands.
What is turnRight();?