标签: 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,那么?
答案 0 :(得分:3)
很简单,没有。
(类似问题:let-a-function-return-the-super-function)