Closed gstark closed 6 years ago
https://github.com/andrewjlanza/function-junction/blob/master/src/functions.test.js
for some reason my final test will not pass. Looking for assistance on this one for sure.
:+1: - come see me and we can review!
https://github.com/andrewjlanza/function-junction/blob/master/src/functions.test.js
this works. one month l8er
Your homework was marked: Meets Expectations
“Get up and dance!” — via Mark Dewey
Objectives
After completing this assignment, you should be able to:
Requirements
hub clone function-junction
cd function-junction
yarn install
(or justyarn
for short)code .
yarn test
src/functions.test.js
and work on functions until tests pass.Explorer Mode
Adventure Mode
String.reverse()
orArray.max()
to solve these problems, try implementing them from scratch.Epic Mode
sum
andmax
functions to take arrays instead of numbers and update the tests so they pass.for
loop or awhile
loop, convert it to use amap
,filter
orreduce
.Additional Resources
Reference the documentation on MDN to find what kind of helpful functions might already be on
Array
andString
in JavaScript.