Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created April 16, 2018 13:18
Show Gist options
  • Save nairihar/b23809f84c16b24ab6d7d1cd218dcbdd to your computer and use it in GitHub Desktop.
Save nairihar/b23809f84c16b24ab6d7d1cd218dcbdd to your computer and use it in GitHub Desktop.
Reactive Programming, medium, sum-example-reactive-not-working
n$ = [2]
m$ = [3]
c$ = n$.concat(m$).reduce(sum)
c$ // 2 + 3 = 5
n$.push(3)
c$ // 3 + 3 = 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment