Skip to content

Instantly share code, notes, and snippets.

@DanShappir
Created November 1, 2020 09:52
Show Gist options
  • Save DanShappir/9760691d68b90bee7acd24be4640bda6 to your computer and use it in GitHub Desktop.
Save DanShappir/9760691d68b90bee7acd24be4640bda6 to your computer and use it in GitHub Desktop.
Functions called sequentially
const result = Array.from(slice(map(filter(numbers, v => v % 2 === 0), v => v + 1), 0, 3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment