Array const arrayResult = source .map(n => n * 2) .filter(n => n > 0.5) .reduce((m, c) => Math.max(m, c)); · RxJs const transducerResult = rxjs.of(source).pipe ...
確定! 回上一頁