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