relation between reactive programming and react JS

Viewed 359

there is a programming concept called reactive programming, and a variation of JS called react JS. is there any relation between these two?

1 Answers

Reactive Programming is a programing paradigm and is a programming with asynchronous data streams.many program languages implemented this paradigm and have tools for this. But React is a UI framework for build client side web applications. React JS also is a JavaScript Framework that used in many wen applications.

Related