✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following RxJS code snippet from the "Functional Reactive Programming" chapter:
const columns = of('A', 'B', 'C');const rows = range(3);columns.pipe( mergeMap(column => rows.pipe( map(row => [column, row]) ))).subscribe(console.log);
What will be logged to the console?