This project was created with the purpose of practicing and learning Asynchronous programming with JavaScript.
Map Esta función crea una copia de la colección que recibe, no cambia modifica la colección original.
[1, 2, 3].map( x => x + 1)
- [2, 3, 4]
Filter Esta es una función de testing, es decir, toma una colección y retorna una nueva solo con los elementos que pasaron el test.
[1, 2, 3].filter( x => x > 1)
- [2, 3]
ConcatAll Esta función transforma colecciones multidimensionales en colecciones de una sola dimensión.
[ [1], [2, 3], [], [4] ].concatAll()
- [ 1, 2, 3, 4]
- DOM Events
- Websockets
- Server-sent Events
- Node Streams
- Service Workers
- jQuery Events
- XMLHttpRequest
- setInterval
- Observable === Collection + Time
A collection that arrives over time.
- Observables can model ...
- Events
- Async Server Requests
- Animations