-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Map in chapter 4. Documentation? #198
Comments
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map On Oct 27, 2015, at 3:00 AM, Moritz Sattler [email protected] wrote: Hello there! I really like you guide! So I have a question. In chapter 4 you mention the method "map" as in: Where does this map come from? It's used like it is a native javascript method, but I cannot find any documentation on it. — |
Spend some time with this! http://reactivex.io/learnrx/ http://reactivex.io/learnrx/ On Oct 27, 2015, at 3:00 AM, Moritz Sattler [email protected] wrote: Hello there! I really like you guide! So I have a question. In chapter 4 you mention the method "map" as in: Where does this map come from? It's used like it is a native javascript method, but I cannot find any documentation on it. — |
But this is a method of Array, as where the map in the example seems to be a function. |
I believe Brian is referring to the Ramda implementation of map. But it is fairly trivial to roll your own. Check out the tutorial link I just sent you. You will see what I am talking about. On Oct 27, 2015, at 8:24 AM, Moritz Sattler [email protected] wrote: But this is a method of Array, as where the map in the example seems to be a function. — |
@Moezalez |
This is part of one of his libraries |
I feel like this should be a little more clear |
Hello there!
I really like you guide!
So I have a question. In chapter 4 you mention the method "map" as in:
"We also have the ability to transform any function that works on single elements into a function that works on arrays simply by wrapping it with map"
Where does this map come from? It's used like it is a native javascript method, but I cannot find any documentation on it.
The text was updated successfully, but these errors were encountered: