Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 570 Bytes

File metadata and controls

20 lines (12 loc) · 570 Bytes

Class 06

Wednesday Afternoon June 28th 2023

Notes

Q&A's

  1. What are variables in JavaScript?
  • containers that we can store and/or access pertinent information
  1. What does it mean to declare a variable?
  • this tells JS about certain properties about the variable (const or let, boolean or not, etc.)
  1. What is an “assignment” operator, and what does it do?
  • equals (=) is an assignment variable, this is how you assign values to a variable (e.g. let name="Paul")
  1. What is information received from the user called?
  • User input