CIS 119 Chapter 3

Objectives

  • Evaluate expressions using relational operators
  • Evaluate expressions using logical operators
  • Create solutions to problems using if/else selection in JavaScript
  • Create solutions to problems using switch selection in JavaScript
  • Create solutions to problems using while loop repetition in JavaScript
  • Create solutions to problems using do/while loop repetition in JavaScript
  • Create solutions to problems using for loop repetition in JavaScript
  • Create an array in JavaScript
  • Use a loop to process an array

Online notes for the week

Chapter 3 outline

  • Evaluate expressions with relational operators
  • Evaluate expressions with logical operators
  • Evaluate expressions with bitwise operators
  • Write code using if/else selection
  • Write code using switch selection
  • Write code using a for loop
  • Write code using a while loop
  • Write code using a do/while loop
  • Create an array
  • Process individual elements of an array
  • Write code that uses a loop to process elements of an array