标签: javascript node.js promise
Promise.all() docs将参数描述为Promises数组。如果数组中的某些(或所有)元素是非Promise值,是否定义了行为?例如,在节点6.10.2中:
Promise.all()
Promise.all([1, 2, 3]).then( res => console.log(res) );
按预期打印[ 1, 2, 3 ]。这种行为(Promise.all解析的位置是否与调用的值相同)保证在节点中?
[ 1, 2, 3 ]
Promise.all