18
प्रतीक्षा करें जब तक कि सभी वादे पूरे न हों, भले ही कुछ खारिज कर दिया जाए
मान लीजिए कि मेरे पास एक सेट है Promiseजो नेटवर्क अनुरोध कर रहा है, जिनमें से एक विफल हो जाएगा: // http://does-not-exist will throw a TypeError var arr = [ fetch('index.html'), fetch('http://does-not-exist') ] Promise.all(arr) .then(res => console.log('success', res)) .catch(err => console.log('error', err)) // This is executed मान लीजिए कि मैं …