observable // [1, 5, 2, 3] .pipe( filter((e) => e % 2 === 0) // [2] ) ... pairwise emits the current element along with the previous one as an Array.
確定! 回上一頁