DEV Community

Discussion on: Intro to Functional Combinators in Javascript

Collapse
 
vuong profile image
vuong ⛈️

I just "review" code, not sure about the whole article because I'm still learning JS :P

conat inc = add(1);

should be

const inc = add(1);

Collapse
 
jethrolarson profile image
Jethro Larson

Thanks!