Game Preview

Web 102 Mid-Semester Review

  •  English    20     Public
    https://github.com/hytechclub/web-102/tree/master/MidSemesterReview
  •   Study   Slideshow
  • Comments in JavaScript start with...
    // or /*
  •  10
  • What's the data type?
    String
  •  5
  • What's the data type?
    Number
  •  5
  • What's the data type?
    Boolean
  •  5
  • What's the data type of the nickname variable??
    String
  •  5
  • What's the data type of the value within the if statement?
    Boolean
  •  5
  • What is the data type of the mood variable?
    String
  •  5
  • What will be displayed when this code runs?
    Nothing
  •  5
  • What will be displayed when this code runs?
    141
  •  10
  • What will be displayed when this code runs?
    You will eat Tuesday on Pizza.
  •  15
  • What is the first keyword needed to define a function?
    function
  •  5
  • In a function definition, the code between the { and } is called...
    the body (of the function)
  •  10
  • When defining a function, what comes after the function keyword?
    function name
  •  5
  • How could you call this function named runCode?
    runCode()
  •  10
  • What message will be displayed when this code runs?
    You are a minor
  •  10
  • Which attribute will run JavaScript code when an HTML button is pressed?
    onclick
  •  10