小编典典

提前退出功能?

javascript

我有一个功能:

function myfunction() {
  if (a == 'stop')  // How can I stop the function here?
}

exit()JavaScript中有类似的东西吗?


阅读 258

收藏
2020-05-01

共1个答案

小编典典

您可以使用return

function myfunction() {
     if(a == 'stop') 
         return;
}

这将发送返回值undefined到所谓的函数。

var x = myfunction();

console.log( x );  // console shows undefined

当然,您可以指定其他返回值。返回的任何值都将使用上面的示例记录到控制台。

return false;
return true;
return "some string";
return 12345;
2020-05-01