- Notifications
You must be signed in to change notification settings - Fork0
Functional Programming in Javascript Tutorial
hemonth/coderoad-functional-school
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A trip through functional programming in Javascript using common built-in Javascript array methods such asmap
&reduce
.
By the end, you should have an understanding of how to use array methods to manipulate semi-complex data.
Level: IntermediateKeywords: javascript, functionalLength: 1-2 hours
CodeRoad is an open-sourced interactive tutorial platform for the Atom Editor. Learn more atCodeRoad.io.
install the tutorial package
npm install --save coderoad-functional-school
install and run theatom-coderoad plugin
Understanding the Data Set
Over this tutorial series, we'll be changing and working with two different data sets. It'll be a big help to first understand what the data looks like.
var students = [ {"title":"Relational Databases","instructor":"Sean Quentin Lewis","name":"Ada Lovelace","score":91,"grade":"A" },...]
Here we have an array of "student" objects. To get the first item in the array, you can use the array index. Array indexes start at 0.
console.log('first instructor',students[0].instructor);// first instructor Sean Quentin Lewis
About
Functional Programming in Javascript Tutorial
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Languages
- JavaScript100.0%