I had been using react-js and really like its concept so I want to know if there is a programming language/framework that sort of works like it. For instance, I want to define:
var A = something
var B = somefun(var A)
They could live in different objects, modules, files, etc. The important part is that I want to link B to the value of A so that eveI had been using react-js and really like its concept so I want to know if there is a programming language/framework that sort of works like it. For instance, I want to define: ry time that I check B, it is calculated again. I want to know if there is a framework/language with support for this kind of statements.
Thanks in advance.