除了Exceptions之外,是否可以在JavaScript中实现非本地返回?

时间:2010-11-09 12:51:51

标签: javascript function closures

可以在JavaScript中实现非本地返回,以便您可以编写如下内容:

function some_function() {
  function some_other_function(value) {
   non-local-return true;
  }
  some_other_function();
  return false;
}

true === some_function();

some_function会返回true,那么?

1 个答案:

答案 0 :(得分:3)

很简单,没有。

(类似问题:let-a-function-return-the-super-function