Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 29, 2017 02:40
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/7b52a096a6e2afe2a0acf032231c9e2d to your computer and use it in GitHub Desktop.
Save Ibro/7b52a096a6e2afe2a0acf032231c9e2d 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 * 2); // multiply each item
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