You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//Write a generic function chainer that takes a starting value, and an array of functions to execute on it.
//The input for each function is the output of the previous function (except the first function, which takes the starting value as its input). Return the final value after execution is complete.