Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

of rxjs

content_copyopen_in_new

import { of } from 'rxjs';

 // Converts the arguments to an observable sequence.
of(10, 20, 30)
.subscribe(
  next => console.log('next:', next),
  err => console.log('error:', err),
  () => console.log('the end'),
);
 
// Outputs
// next: 10
// next: 20
// next: 30
// the end
Source by rxjs.dev #
 
PREVIOUS NEXT
Tagged: #rxjs
ADD COMMENT
Topic
Name
4+9 =