hardJavaScript
Function Pipeline
Implement a pipeline function that executes functions left to right.
Ensure function signatures match starter code to run test cases.
index.js
Loading...
Test Case #1
Input: (x=>x+1),(x=>x*2),2
Expected: 6
Test Case #1
Input: (x=>x+1),(x=>x*2),2
Expected: 6