Reactive Programming

Reactive programming is the concept of listeners.

ie. you can assign variables that automatically update their values based on their dependencies.

eg of non-reactive code.

let y = 3
let x = y + 1
// x = 4

y = 5
// x still = 4  

References

  1. swyx @ react rally 2018 - Why react is not reactive

Cateogory: []
Tags: