我有一个功能:
function myfunction() { if (a == 'stop') // How can I stop the function here? }
exit()JavaScript中有类似的东西吗?
exit()
您可以使用return。
return
function myfunction() { if(a == 'stop') return; }
这将发送返回值undefined到所谓的函数。
undefined
var x = myfunction(); console.log( x ); // console shows undefined
当然,您可以指定其他返回值。返回的任何值都将使用上面的示例记录到控制台。
return false; return true; return "some string"; return 12345;