Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Functional Programming in Javascript Tutorial

NotificationsYou must be signed in to change notification settings

hemonth/coderoad-functional-school

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 

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

CodeRoad is an open-sourced interactive tutorial platform for the Atom Editor. Learn more atCodeRoad.io.

Setup

  • install the tutorial package

    npm install --save coderoad-functional-school

  • install and run theatom-coderoad plugin

Outline

Start

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

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript100.0%

[8]ページ先頭

©2009-2025 Movatter.jp