我有这个异步函数,我想把它变成一个承诺
var myAsyncFunction = function(err, result) {
if (err)
console.log("We got an error");
console.log("Success");
};
myAsyncFunction().then(function () { console.log("promise is working"); });
我得到 TypeError: Cannot call method 'then' of undefined。
这段代码有什么问题?