const mul3 = function (a) {
return a * 3;
};

const add1 = function (a) {
return a + 1;
};

const add1mul3_One = function (a) {
return mul3(add1(a));
};

const add1mul3_Two = function (a) {
return _.go(a, add1, mul3);
};

console.log(add1mul3_One(3) === add1mul3_Two(3)); // True

One함수처럼 그냥 함수 안에 넣어서 리턴해줘야할지 go함수로 감싸서 리턴해줘야할지 모르겠습니다
go로 감싸는게 더 보기 편한거같긴한데 저렇게 하면 될까요?