In this lesson, students will deepen their understanding of functions by learning about the start function. The start function helps to organize the readability of code by creating a designated place where code that is going to be run in a program can be stored:
function start(){
turnRight();
}
function turnRight(){
turnLeft();
turnLeft();
turnLeft();
}
Students will be able to:
These are all the activities included in the lesson