Update operators.md (#78)
- add an initialValue to the TypeScript `scan` example
Will Golledge 5 years ago 3e1c166b 86a6f70d
··· 512 512 513 513 pipe( 514 514 fromArray([1, 2, 3, 4, 5, 6]), 515 515 - scan((acc, val) => acc + val), 515 515 + scan((acc, val) => acc + val, 0), 516 516 subscribe(val => console.log(val)) 517 517 ); 518 518