reading-notes

class-03 summary

Lists:

Boxes :

Arrays in Javascript :

for(initialExpression; condition; updateExpression) { // for loop body }

  1. While (the code will continue to loop for as long as the condition is true) The syntax of the while loop is: while (condition) { // body of loop }