JS中的递归有没有深度限制

JS中的递归有没有深度限制

为了保证n次调用中this一致。假设你首次调用是这样的:flexisum(...)那么n次递归中,this都是window(或undefined)。假设你首次调用是这样的:sth.flexisum(...)flexisum.call(sth
JavaScript240