Use JavaScript template literals strings `${}`
to read from variables and create new strings
Using template strings are a quick and easy way to dynamically read from variables to create new strings.
clone
the exercise repository to your local computer.
- If you are not too sure how to do it, please follow this video
- The code for this exercise should go into
/Submission/static/js/script.js
.
- Open
Submission/index.html
in your browser with Live Server, andSubmission/static/js/script.js
in VS Code. - Follow the instructions in
Submission/static/js/script.js
to complete the variables using template strings
- Commits are pushed to GitHub
- Tutorial Video for push your code
Git CLI Refresher
# when ready to commit and push
git add .
git commit -m "Completed Part A"
git push