DEV Community

Discussion on: Reactive Programming in JavaScript

Collapse
 
opowell profile image
opowell

I think there is a typo:

let c = declare(() => retrieve(a) + c)

should be
let c = declare(() => retrieve(a) + 2)

?