From 4d47b1a4250a811de5198766abdf80141f33592b Mon Sep 17 00:00:00 2001 From: Adryenne Date: Sun, 25 Apr 2021 01:56:57 -0400 Subject: [PATCH] Update README.md Proposing correction to original video tag, original tag was the URL to "What is JavaScript," video. Changed url to video # 29 and added an additional video # 31 for "Populating Arrays." Loops video # 35 was also added to reference. --- 2-js-basics/4-arrays-loops/README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/2-js-basics/4-arrays-loops/README.md b/2-js-basics/4-arrays-loops/README.md index 0c307ffd..5d7480b5 100644 --- a/2-js-basics/4-arrays-loops/README.md +++ b/2-js-basics/4-arrays-loops/README.md @@ -8,9 +8,17 @@ This lesson covers the basics of JavaScript, the language that provides interactivity on the web. In this lesson, you'll learn about arrays and loops, which are used to manipulate data. -[![Arrays and Loops](https://img.youtube.com/vi/Q_CRM2lXXBg/0.jpg)](https://youtube.com/watch?v=Q_CRM2lXXBg "Arrays and Loops") +## Related Videos + +[![Arrays](https://img.youtube.com/vi/1U4qTyq02Xw/0.jpg)](https://youtube.com/watch?v=1U4qTyq02Xw "Arrays") +> Click the image above for a video about arrays. + +[![Populating Arrays](https://img.youtube.com/vi/ZARmjyg7Lik/0.jpg)](https://youtube.com/watch?v=ZARmjyg7Lik "Populating Arrays") +> Click the image above for a video about populating arrays. + +[![Loops](https://img.youtube.com/vi/Eeh7pxtTZ3k/0.jpg)](https://www.youtube.com/watch?v=Eeh7pxtTZ3k "Loops") +> Click the image above for a video about loops. -> Click the image above for a video about arrays and loops. ## Arrays Working with data is a common task for any language, and it's a much easier task when data is organized in a structural format, such as arrays. With arrays, data is stored in a structure similar to a list. One major benefit of arrays is that you can store different types of data in one array.