bitovi / academy

Everything we know about frontend, backend, UX, and Devops consulting and management.
https://www.bitovi.com/academy/
14 stars 3 forks source link

RXJS training #7

Open justinbmeyer opened 5 years ago

justinbmeyer commented 5 years ago
CleverOscar commented 5 years ago

Not sure if there is something thats suppose to go here but if so, just wanted to point it out screen shot 2019-01-22 at 11 45 59 am https://bitovi.github.io/university/rxjs/basics.html Under Transforming observables to other observables

All the other pages are good

tehfedaykin commented 5 years ago

Review notes

justinbmeyer commented 5 years ago
const number = source
    .pipe( mapToNumber )
    .pipe( log("number", value) );
const number = source
    .pipe( mapToNumber )

number.pipe( log("number", value) ) //-> never subscribed
tehfedaykin commented 5 years ago