map

signature: map(project: Function, thisArg: any): Observable

Apply projection with each value from source.

New to transformation operators? Check out the article Get started transforming streams with map, pluck, and mapTo!

Ultimate RxJS

Examples

Example 1: Add 10 to each number

( StackBlitz | jsBin | jsFiddle )

// RxJS v6+
import { from } from 'rxjs';
import { map } from 'rxjs/operators';

//emit (1,2,3,4,5)
const source = from([1, 2, 3, 4, 5]);
//add 10 to each value
const example = source.pipe(map(val => val + 10));
//output: 11,12,13,14,15
const subscribe = example.subscribe(val => console.log(val));

Example 2: Map to single property

( StackBlitz | jsBin | jsFiddle )

Additional Resources


๐Ÿ“ Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/map.ts

Last updated