Tell us what’s happening:
I seem to be confused about the array depth. Could you please clarify it?
Your code so far
let myNestedArray = [
// Only change code below this line
['unshift', false, 1, 2, 3, 'complex', 'nested'],
[
['loop', 'shift', 6, 7, 1000, 'method']
],
[
[
['concat', false, true, 'spread', 'array', 'deep']
]
],
[
[
[
['mutate', 1327.98, 'splice', 'slice', 'push', 'deeper']
]
]
],
[
[
[
[
['iterate', 1.3849, 7, '8.4876', 'arbitrary', 'depth', 'deepest']
]
]
]
]
// Only change code above this line
];
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Challenge Information:
Basic Data Structures - Create complex multi-dimensional arrays