Closed gstark closed 5 years ago
Hey Gavin. Here is my github repo url for js-Iteration assignment. This will become my start of day coding assignment until I get to Code Wars Katas level. Thank you for your help. Once I understand the last three I'll resubmit and comment.
Awesome!
For things like
number = number % 2 === 0
return number
just do return (number % 2 ==== 0)
Your homework was marked: Meets Expectations
“Well done!” — via Gavin Stark
JavaScript Iteration
Objectives
After completing this assignment, you should be able to:
Instructions
git clone js-iteration
cd js-iteration
yarn install
(or justyarn
for short)yarn test
src/functions.test.js
and work on functions until tests pass.Explorer Mode
Additional Resources
Reference the documentation on DevDocs to find what kind of helpful functions might already be in JavaScript.