❯
2026年3月30日1分钟阅读
function flat(arr){ const result = [] arr.forEach(a=>{ if(typeof a === 'Array') }) }