571 B
571 B
importance: 5
Array operations.
Let's try 5 array operations.
- Create an array
styles
with items "Jazz" and "Blues". - Append "Rock-n-Roll" to the end.
- Replace the value in the middle by "Classics". Your code for finding the middle value should work for any arrays with odd length.
- Strip off the first value of the array and show it.
- Prepend
Rap
andReggie
to the array.
The array in the process:
Jazz, Blues
Jazz, Bues, Rock-n-Roll
Jazz, Classics, Rock-n-Roll
Classics, Rock-n-Roll
Rap, Reggie, Classics, Rock-n-Roll