Results 1 issues of

When using flatten to flatten an array, the following bugs occur, which is not the same as Array.prototype.flat. ```js const arr = [1,,2,3,4] console.log(arr.flat()) // [1,2,3,4] console.log(_.flatten(arr)) [1, undefined, 2,3,4]...