W01 Learning Activity: JavaScript Review
Overview
This activity is a review of some basic JavaScript concepts, application, and DOM (Document Object Model) manipulation. JavaScript is a core web technology in web frontend design and development along with HTML and CSS. This course will require the application of JavaScript to meet functional and developmental specifications.
Activity Instructions
As you work through this JavaScript Learning Activity assignment, you will be asked (in step 3) to make a copy (called a fork) of a partially completed CodePen. The JS tab of this CodePen has a series of comments starting around line 22 where you will add or alter JavaScript to finish steps 4 through 10 of this assignment. There are "Check Your Understanding" hints to help you out along the way.
- What is the correct HTML markup to reference an external JavaScript file named
app.js
located in the scripts folder?Check Your Understanding
<script src="scripts/app.js"></script>
<script src="scripts/app.js" defer></script>
Where should this script reference be located in the HTML document?
If you reference this script in the
head
of the document, you should use thedefer
attribute given that the script may contain references to the document object that need to be rendered first. The first example given here is a reference that is used at the end of the document, right before the closing</body>
tag. -
Fork button in CodePen - Fork (copy) this CodePen JavaScript
Review Exercise and complete the following:
- In your CodePen, change the given date output to this format: mon dd,
year
(for example, Apr 04, 2024)
Check Your Understanding
- Modify the given variable
options
object settings. - Change the locale parameter from
"en-UK"
to"en-US"
in thetoLocaleDateString
method.
- Modify the given variable
- Replace this concatenated string using a template literal.
"<strong>Volume</strong>: " + volume + " liters"
Check Your Understanding
`<strong>Volume</strong>: ${volume} liters`
- Declare a variable named
quantity
and assign it the value of the HTML input element with an id ofq
using the querySelector method.Check Your Understanding
let quantity = document.querySelector('#q').value;
- Output this string, "
Welcome to <mark>our</mark> neighborhood!
", to the first<aside>
in the document.Check Your Understanding
Why use innerHTML versus textContent in this specific case? Try It.document.querySelector('aside').innerHTML = 'Welcome to <em>our</em> neighborhood!';
Is is OK to use double quotes to contain the output string?
Is it OK to use backticks (`) to contain the output string? - Output the returned value of a function named
getCelsius
to an HTML input element with an id oftemp
. Feed the getCelsius literal value of 33 (which represents 33°F). The getCelsius function is already included in the provided CodePen code.Check Your Understanding
document.querySelector('#temp').value = getCelsius(33);
An HTML input element does not have an innerHTML nor textContent property. Instead you can change the
value
property which is displayed in the input element. - Select all the div elements in a document and assign the result to a
const
variable nameddivs
using querySelectorAll. Output to the provideddiv
element with an id ofdivs
in the CodePen.Check Your Understanding
The resulting NodeList is a collection of nodes from the document driven by querySelectorAll. It has a length and is zero-based indexed.const divs = document.querySelectorAll('div');
- Filter an array named
citynames
to return only city names in the array that start with the letter "C" and store the resulting array into a variable namedfilterC
. Output to the provideddiv
element with an id ofc-names
in the CodePen.Check Your Understanding
let filterC = citynames.filter(city => city.charAt(0) === 'C');
- In your CodePen, change the given date output to this format: mon dd,
year
(for example, Apr 04, 2024)
Example Solution
Example Code: JavaScript Review Exercise SolutionsSeven exercises demonstrated
Optional Resources
- JavaScript Notes & Reference – wesbos.com