蹦床函数,将递归改写为循环 2019-12-02 本文已影响0人 sorry510 function trampoline(f) { while(f && f instanceof Function) { f = f() } return f }