Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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
 
PREVIOUS NEXT
Tagged: #functional #composition
ADD COMMENT
Topic
Name
1+8 =