摘要: So far we only had effects that write something to the external world, we are not yet reading anything from the external world into our app. This less 阅读全文
posted @ 2016-02-02 23:11 Zhentiw 阅读(220) 评论(0) 推荐(0)
摘要: Currently the code looks like : // Logic (functional) function main() { return { DOM: Rx.Observable.timer(0, 1000) .map(i => `Seconds elapsed ${i}`), 阅读全文
posted @ 2016-02-02 17:10 Zhentiw 阅读(253) 评论(0) 推荐(0)
摘要: How can we show one string on the DOM, and a completely different string on Console log? This lesson shows how we can make our main function return mu 阅读全文
posted @ 2016-02-02 07:00 Zhentiw 阅读(167) 评论(0) 推荐(0)
摘要: We need to give structure to our application with logic and effects. This lessons shows how we can organize our code into two parts: main() function f 阅读全文
posted @ 2016-02-02 06:54 Zhentiw 阅读(179) 评论(0) 推荐(0)