摘要:
方案一,利用Array自带方法,最好记的方法。 function recursionFlat1(arr = []) { return arr.flat(Infinity) } 方案二,最容易弄懂的方法。 function recursionFlat2(arr = []) { const res = 阅读全文
摘要:
这里只实现了一个简单的Promise,更加完善的Promise实现请参照 Promises/A+ 标准 class _Promise { constructor(fn) { this.state = "pendding"; this.value = undefined; this.resolvedC 阅读全文