Intro To Javascript

123456789101112131415
Across
  1. 3. Text inside quotation marks (or backticks)
  2. 6. A coding language used to make websites interactive.
  3. 7. A named container that stores a value, like a string or number
  4. 8. To call a function so it runs and shows a result in the console
  5. 9. The area where we write and test our code.
  6. 11. The actual value you pass to the function when you call it. This fills in the placeholder
  7. 12. A way of writing variables where the first word is lowercase, and each new word starts with a capital letter.
  8. 13. The act of adding dynamic values within a string
  9. 14. A keyword used to create a variable that can change.
  10. 15. Whole, negative or decimals, used without quotation marks.
Down
  1. 1. We use this, instead of quotation marks, when working with template literals
  2. 2. A placeholder in a function that represents a value the function needs.
  3. 4. Adding multiple strings or values together, usually with a plus sign
  4. 5. Treating uppercase and lowercase letters as different.
  5. 10. A place in JavaScript where we see the output of our code.
  6. 12. A keyword used to create a variable that cannot be changed.