#What is a compose method? Compose takes a series of single parameter functions that are used as the parameters for the previous functions. The last function can take any number of parameters.
Code example:
function text(a) {
return 'item: ' + a;
}
function hello(a) {
return 'Hello ' + a;