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<
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.