我理解回调如何工作并成功创建了一个回调,但是我无法让我的代码在函数内返回:
var verified = verifypassword(username, password, function(correctpassword){
//console.log(correctpassword);
return correctpassword;
});
console.log(correct);
//prints undefined
然后当我调用verifypassword函数的一个实例时:
"*"
如果我尝试在回调函数中打印console.log(正确),它会返回正确的密码。
感谢任何帮助