diff --git a/index.html b/index.html index 82c3628..e9700e2 100644 --- a/index.html +++ b/index.html @@ -50,12 +50,12 @@

Functional Programming in Javascript

-

This is a series of interactive exercises for learning Microsoft's Reactive Extensions (Rx) Library for Javascript. - So why is the title "Functional Programming in Javascript"? Well it turns out that the key to learning Rx is - training yourself to use functional programming to manipulate collections. Functional programming provides - developers with the tools to abstract common collection operations into reusable, composable building blocks. +

This is a series of interactive exercises for learning Microsoft's Reactive Extensions (Rx) Library for Javascript. + So why is the title "Functional Programming in Javascript"? Well it turns out that the key to learning Rx is + training yourself to use functional programming to manipulate collections. Functional programming provides + developers with the tools to abstract common collection operations into reusable, composable building blocks. You'll be surprised to learn that most of the operations you perform on collections can be accomplished with - five simple functions (some native to JavaScript and some included in the + five simple functions (some native to JavaScript and some included in the RxJS library):

    @@ -1877,7 +1877,7 @@

    Exercise 15: Use forEach to find the largest box art

    Exercise 16: Implement reduce()

    -

    Let's add a reduce() function to the Array type. Like map

    +

    Let's add a reduce() function to the Array type. Like map. Take note this is different from the reduce in ES5, which returns an value instead of an Array!