Skip to content

Latest commit

 

History

History
 
 

13-javascript2_1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

#Unit 13 - Loops & Arrays

##Synopsis This unit introduces arrays and loops to our students. Students will learn how to initialize, store, and read from arrays. They will also learn how to access and manipulate individual elements of the array. Students will also learn the basics of loops. They will start with while loops and learn what an index is and the broader concept of iteration. They will then be introduced to the upgraded for loop. Finally, they will connect their knowledge of arrays to loops.

##Sessions

  1. While Loops
  2. For Loops
    Project: 99 bottles Project
  3. Arrays
    Project: Color Changer

##Codecademy Resources The following CodeCademy lessons correspond and will help student understand the concepts in this unit. The teacher may choose to assign these lessons if they would like.

  1. Introduction to While Loops in Javascript 2.Introduction to For Loops in Javascript 3.Arrays and Loops - exercises 9-13

##Standards

###CPP.L2-05 I - Arrays

  1. Student can use arrays: student demonstrates understanding that the first index is 0; student can access elements of the array and change them; student can find the length of an array.
  2. Student can perform various operations on arrays.

###CPP.L2-05 I - Loops

  1. Student can use while and for loops and avoid infinite loops.
  2. Student understands and can use break, continue, and return statements.