You will be iterating over etsy items to transform the data into useful
information.
Objectives
Learning Objectives
After completing this assignment, you should:
Understand forEach, map, filter, and reduce
Understand array iteration
Understand how to retrieve data from an object.
Performance Objectives
After completing this assignment, you should be able to:
Write a function from scratch
Use iteration functions (like map) with function expressions
Details
Deliverables
A repo containing at least:
data.js
exercises.js
index.html
Requirements
No JSHint warnings or errors
All functions should be complete and produce the expected output
Normal Mode
Create a new git and Github repo and add
exercises.js
and
data.js
to it. Make your edits to the functions in the "exercises.js" file.
You will need to create an HTML file that links to both script files. The data
must come first so that it is available in the exercises. Once you include
data.js, a global variable named etsyItems will be available.
Etsy Static Iteration
Description
You will be iterating over etsy items to transform the data into useful information.
Objectives
Learning Objectives
After completing this assignment, you should:
Performance Objectives
After completing this assignment, you should be able to:
Details
Deliverables
data.js
exercises.js
index.html
Requirements
Normal Mode
Create a new git and Github repo and add exercises.js and data.js to it. Make your edits to the functions in the "exercises.js" file.
You will need to create an HTML file that links to both script files. The data must come first so that it is available in the exercises. Once you include
data.js
, a global variable namedetsyItems
will be available.