Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
Create a program that uses a multidimensional array to hold songs and artists, and then displays a playlist of each song, with the artist who recorded it and the duration of the song.
Multidimensional array snippet
const playlist = [
['So What', 'Miles Davis', '9:04'],
['Respect', 'Aretha Franklin', '2:45'],
['What a Wonderful World', 'Louis Armstrong', '2:21'],
['At Last', 'Ella Fitzgerald', '4:18'],
['Three Little Birds', 'Bob Marley and the Wailers', '3:01'],
['The Way You Look Tonight', 'Frank Sinatra', '3:21']
];
Resources
Spread syntax and multidimensional arrays
Note: Spread syntax effectively goes one level deep while copying an array. Therefore, it may be unsuitable for copying multidimensional arrays, as the following example shows.
const brass = [ ['trumpet'], ['tuba'], ['trombone'] ];
const instruments = [...brass];
instruments.shift().shift();
// "trumpet"
// Notice how the brass array is also affected by this:
brass
// [ [], ["tuba"], ["trombone"] ]
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Samuel Kleos
Front End Web Development Techdegree Student 13,728 Points1 Answer
-
Peter Huang
5,427 Points1 Answer
-
Peter Huang
5,427 Points1 Answer
-
John Lane
1,697 PointsWhy does "arr" reference the "playlist" array? Is that the nature of "arr" itself or is it assigned?
Posted by John LaneJohn Lane
1,697 Points1 Answer
-
karan Badhwar
Web Development Techdegree Graduate 18,135 Points3 Answers
-
Alex Hort-Francis
17,074 Points1 Answer
-
Esther AlQaisi
2,311 Points1 Answer
-
ja5on
10,338 Points2 Answers
-
Kord Monaco
3,443 PointsConsole gives me an error at line 14: Cannot read property '0' of undefined at createListItems
Posted by Kord MonacoKord Monaco
3,443 Points4 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up