JS Refresher

1234567891011121314151617
Across
  1. 2. A command used to print information to the console.
  2. 4. A reusable block of code.
  3. 7. A keyword used to create a variable that cannot be reassigned.
  4. 8. The real value passed into a function when it is invoked.
  5. 10. A placeholder variable written in the beginning of a function.
  6. 11. A keyword used to create a variable that can change.
  7. 12. The type of quotes used to create a template literal.
  8. 14. The place where JavaScript shows output and errors.
  9. 15. The category a value belongs to.
  10. 16. Finding and fixing errors in code.
  11. 17. Uses a dollar sign and a curly bracket. A variable goes inside here
Down
  1. 1. Changing the value of a variable created with let.
  2. 3. To call a function so it runs.
  3. 5. A way to place variables inside a sentence using backticks and ${}.
  4. 6. A data type used for math and counting.
  5. 9. A container that stores information.
  6. 13. A data type used for text. Strings use quotation marks.