function maxDepth(obj, depth = 0) { if (typeof obj !== 'object') { return depth; } const [values, depthIncrease] = Array.isArray(obj)
確定! 回上一頁