There was an error while loading. Please reload this page.
1 parent 92e0377 commit f62a343Copy full SHA for f62a343
manuscript/ch10.md
@@ -320,7 +320,7 @@ var b =
320
.filter( v => v % 2 == 1 ) // only odd numbers
321
.distinctUntilChanged() // only consecutive-distinct
322
.throttle( 100 ) // slow it down a bit
323
- .map( v = v * 2 ); // double them
+ .map( v => v * 2 ); // double them
324
325
b.subscribe( function onValue(v){
326
console.log( "Next:", v );
0 commit comments