Created
April 16, 2018 10:41
-
-
Save nairihar/3f278ff7ee9a195e778552317389b39a to your computer and use it in GitHub Desktop.
Reactive Programming, medium, sum-example-imperative-2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let n = 2, m = 3; | |
let t = n + m; | |
console.log(t); // 5 | |
n = 3; | |
console.log(t); // 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment