The difference between Reactive and Functional-Reactive programming

前端 未结 2 1283
故里飘歌
故里飘歌 2021-01-29 19:07

I have been doing some research into reactive programming recently and I\'m finding it hard to find a good description of the difference between Reactive and Functional<

2条回答
  •  故里飘歌
    2021-01-29 19:41

    FRP is a combination of Functional programming(programming paradigm built upon the idea of everything is a pure function) and reactive programming paradigm (built upon the idea that everything is a stream(observer and observable philosophy)). It is suppose to be the best of the worlds.

    The definition of both give a more clear distinction between the two.

提交回复
热议问题