Last active
April 26, 2017 04:55
-
-
Save devmobasa/d29443fe2b2d94740e773e88dc48d70a to your computer and use it in GitHub Desktop.
RxJS simple operators - Coding Blast - www.codingblast.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Observable } from 'rxjs'; | |
| let numbers = [1, 2, 3]; | |
| let source = Observable | |
| .from(numbers) | |
| .map(n => n * 2) | |
| .filter(n => n > 5); | |
| source.subscribe(next, error, complete); | |
| function next(value: number) { | |
| console.log('next: ', value); | |
| } | |
| function error(err: any) { | |
| console.log('error: ', err); | |
| } | |
| function complete() { | |
| console.log('complete'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment