justin-do-it-react
justin-do-it-react copied to clipboard
234p 오타
// 기존
const formulaWithCompose = compose(
multiplyTwo,
multiplyThree,
addFour
);
const x = 10;
fomulaWithCompose(10);
// 수정
const formulaWithCompose = compose(
multiplyTwo,
multiplyThree,
addFour
);
const x = 10;
fomulaWithCompose(x);