✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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?