promise的习题

  • Post author:
  • Post category:其他


碰到了一个题,因为本身对promise了解不深,所以记录一下

Promise,resolve().then(()=>{
	console.log(0)
	return Promise.resolve(4)
}).then(res=>{
	console.log(res)
})
Promise.resolve().then(()=>{
	console.log(1)
}).then(()=>{
	console.log(2)
}).then(()=>{
	console.log(3)
}).then(()=>{
	console.log(5)
}).then(()=>{
	console.log(6)
}).then(()=>{
	console.log(7)
})



版权声明:本文为qq_26406269原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。