Answers for "what is functional composition"

0

what is functional composition

const myResult = f1(  f2(data)  );  					// composition: pass the output DATA of one function to the input of another ... like pipes.
function add(a){return  function(b){return a + b}  } 	// functional composition
add(2)(3) //-> 5
Posted by: Guest on November-19-2020

Code answers related to "what is functional composition"

Code answers related to "Javascript"

Browse Popular Code Answers by Language