Skip to content

Latest commit

 

History

History
55 lines (32 loc) · 1.32 KB

File metadata and controls

55 lines (32 loc) · 1.32 KB

01 Exercise - JavaScript Template Strings

Brief

Use JavaScript template literals strings `${}` to read from variables and create new strings

Alt text

Rationale

Using template strings are a quick and easy way to dynamically read from variables to create new strings.


Getting Started

  1. clone the exercise repository to your local computer.
  • If you are not too sure how to do it, please follow this video
  1. The code for this exercise should go into /Submission/static/js/script.js.

Instructions

  1. Open Submission/index.html in your browser with Live Server, and Submission/static/js/script.js in VS Code.
  2. Follow the instructions in Submission/static/js/script.js to complete the variables using template strings

Submit your Exercise


Git CLI Refresher
# when ready to commit and push
git add .

git commit -m "Completed Part A"

git push

Walkthrough Video

video