justin-do-it-react icon indicating copy to clipboard operation
justin-do-it-react copied to clipboard

234p 오타

Open choyeah opened this issue 4 years ago • 0 comments

// 기존

const formulaWithCompose = compose(
    multiplyTwo, 
    multiplyThree, 
    addFour
);
const x = 10;
fomulaWithCompose(10);

// 수정

const formulaWithCompose = compose(
    multiplyTwo, 
    multiplyThree, 
    addFour
);
const x = 10;
fomulaWithCompose(x);

choyeah avatar May 23 '20 15:05 choyeah