We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
04-arrays-tasks.js
Строка 150: [ 1, 'b', 'c'], 0, 'x' => [ 'x', 1, 'b', 'c' ] ->[ 1, 'b', 'c'], 'x', 0 => [ 'x', 1, 'b', 'c' ] Строка 164: [ 1, 3, 4, 5 ], 2 => [ 1, 2 ] -> [ 1, 3, 4, 5 ], 2 => [ 1, 3 ]
[ 1, 'b', 'c'], 0, 'x' => [ 'x', 1, 'b', 'c' ]
[ 1, 'b', 'c'], 'x', 0 => [ 'x', 1, 'b', 'c' ]
[ 1, 3, 4, 5 ], 2 => [ 1, 2 ]
[ 1, 3, 4, 5 ], 2 => [ 1, 3 ]