JS Functional Composition
Twitter Youtube
https://youtu.be/qxx849bnfF0
It is an approach where result of one function passed on to next function.
const add = (x, y) => x+y;
const subtract = (x) => x-4;
const multiply = (x) => x * 8;
// result of `add` is passed to `subtrac...
vkglobal.hashnode.dev1 min read