Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created April 29, 2017 03:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/e32ddf67b1b683b6d74821f037b9c6d9 to your computer and use it in GitHub Desktop.
Save Ibro/e32ddf67b1b683b6d74821f037b9c6d9 to your computer and use it in GitHub Desktop.
RxJS - Simple map function - Coding Blast - www.codingblast.com
import {Observable} from 'rxjs';
let source = Observable
.interval(100) // interval starts from 0
.take(5) // take first 5
.map(n => [n * 1, n * 2, n * 3]);
source.subscribe((value) => {
console.log('in next. Value: ', value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment