The concepts of functional programming have significantly shaped Computer Science from the early days.Today we'll apply some "FP" concepts to the MVC Blog!
Today there are many TODO items, but they are (mostly) smaller bites.
When you are finished with lab, follow these steps to submit your work. Create one Pull Request (aka: "PR") from your Forked repo to the ACL repo with your changes, and you'll each submit that same PR link in Canvas.
- Ensure that all your local changes are committed, and pushed to your origin repo.
- Visit the origin repo on github.com, and ensure that all of your completed work has been merged to master via Pull Requests within your repo.
- Create a new PR from your Fork to the ACL repo and ensure the branches look correct.
- Fill in the template based on the text box prompts:
- Write a good descriptive summary of your changes: 1. Be sure to include how much time you spent on it, and who you worked with. 1. Briefly reflect on and summarize your process.
- When you create the PR, it will have a unique URL. Copy this link, share with your partner, and paste it into the assignment submission form in Canvas. Both the driver and the navigator will submit the same PR link.
- Understand advantages of functional programming and reasons for its recent rise in popularity
- Correctly use** forEach, map, filter, reduce** functions to explore and modify a data set
- Construct modularity with IIFE patterns
-
Let's make sure each one of our scripts are properly enclosed. Wrap the contents of article.js in an IIFE, just like articleView.js has been. Set up your IIFE so it receives a parameter to which it can attach behavior.
-
For both
index.html
andadmin.html
, we'll want access to theArticle.all
data...but we'll have different view functions to set up each of those pages. Help complete thefetchAll
function so that it calls anext
parameter: a function to invoke when it's work is done. -
Ensure both the index page and the admin page call
fetchAll
in a way that properly triggers the appropriate page setup methods. -
Use chained map/reduce calls to transform the data into what you need it to be.
- What additional statistical analysis would be of interest to you with this data set? Code it up!
Criteria | Pts |
---|---|
Meets all Assignment Reqs | 6 |
Uses idiomatic code style | 3 |
Follows proper Git workflow | 1 |
Total | 10 |