yellowsheepGithub

Results 1 comments of yellowsheepGithub

``` function flat(arr, depth) { let result = []; function flat1(arr, curDepth) { for (let i = 0; i < arr.length; i++) { if (Array.isArray(arr[i]) && curDepth < depth) {...