我们来观察以下四段代码的区别:
// 1 setTimeout throw |
then
和catch
返回新的Promise
对象,finally
返回本身。
all
的then
,catch
的调用优先级低于all
的元素本身的then
,catch
。
以下两者代码的区别:(定义Promise的时候会执行其中的代码)
const f = () => console.log('now'); |
我们来观察以下四段代码的区别:
// 1 setTimeout throw |
then
和catch
返回新的Promise
对象,finally
返回本身。
all
的then
,catch
的调用优先级低于all
的元素本身的then
,catch
。
以下两者代码的区别:(定义Promise的时候会执行其中的代码)
const f = () => console.log('now'); |