Add an another example for lift (#79)

I found it quite confusing at first sight. Perhaps it would be useful for futur readers to have a second example.
This commit is contained in:
Renaud TERTRAIS 2016-07-26 16:00:57 +02:00 committed by hemanth.hm
parent b0b210248c
commit 102809f9e2

View file

@ -327,6 +327,7 @@ Unlike map lift can be used to combine values from multiple arrays:
```js
lift((a, b) => a * b)([1, 2], [3]); // [3, 6]
lift((a, b) => a * b)([1, 2], [3, 4]); // [3, 6, 4, 8]
```
## Referential Transparency