摘要: For example we have current code: function add(a, b) { console.log(a, b) return a + b } function subtract(a, b) { console.log(a, b) return a - b } add 阅读全文
posted @ 2020-02-20 20:15 Zhentiw 阅读(223) 评论(0) 推荐(0)
摘要: The Promise.any() method accepts an array (or any other iterable) of promises as a parameter. It returns a Promise object that is fulfilled with the v 阅读全文
posted @ 2020-02-20 19:01 Zhentiw 阅读(199) 评论(0) 推荐(0)
摘要: The Promise.allSettled() method accepts an array (or any other iterable) of promises as a parameter. It returns a Promise object that is fulfilled wit 阅读全文
posted @ 2020-02-20 18:27 Zhentiw 阅读(457) 评论(0) 推荐(0)
摘要: In this post, we are going to see how to use 'fakeAsync' to test async code in Angular Context. fakeAsync using Zoom.js underhook, it detects all the 阅读全文
posted @ 2020-02-20 17:59 Zhentiw 阅读(294) 评论(0) 推荐(0)
摘要: In Javascript, there are two types of event loops for async tasks. First one, is well known one, for example, setTimeout, http request, click event wi 阅读全文
posted @ 2020-02-20 17:04 Zhentiw 阅读(132) 评论(0) 推荐(0)
摘要: In the computer world, use restricted resource you have to generate maximum benefit is what we always want to pursue. For now, suppose you are a domin 阅读全文
posted @ 2020-02-20 05:15 Zhentiw 阅读(211) 评论(0) 推荐(0)