📌  相关文章
📜  TypeError: Promise resolver undefined is not a function - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:08.297000             🧑  作者: Mango

代码示例1
// Instead of this
const promise = new Promise()

// do this
const promise = new Promise(() => {})