Skip to content

Commit dab05ed

Browse files
authored
Remove redundant sentence (#29727)
Missed removing it in #29705
1 parent 56a34fd commit dab05ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

foundations/javascript_basics/loops_and_arrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To repeat a set of instructions multiple times, we can use a **loop**. Go throug
2727
Strings and numbers may be our building blocks, but as your scripts get more complex, you're going to need a way to deal with large quantities of them. Luckily, JavaScript has a couple of data types that are used for just that. An Array is an ordered collection of items (strings, numbers, or other things). You may recognize that some of the array methods demonstrated in some of the following resources do similar things to loops. Sometimes you may need more control via an actual loop but sometimes the appropriate array method does the job just fine and you prefer the way it reads.
2828

2929
1. This [JavaScript Arrays crash course](https://www.youtube.com/watch?v=7W4pQQ20nJg) explains an overview of arrays in JavaScript in about 6 minutes.
30-
1. Read through this [intro to arrays](https://javascript.info/array) from JavaScript.info. It briefly mentions loops like `for` and `for..of`; we will come back to these later in this lesson. You do not need to do the exercises at the end of the page.
30+
1. Read through this [intro to arrays](https://javascript.info/array) from JavaScript.info. You do not need to do the exercises at the end of the page.
3131
1. Read through JavaScript.info's [array method guide](https://javascript.info/array-methods) for a deeper look at some further array methods in JavaScript. Again, you do not need to do the exercises at the end of the page; we will come back to these later.
3232
1. Bookmark [MDN's Array documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array). You do not need to memorize anything here. This is where you'll find all built-in array properties and methods and their documentation. This will likely be something you regularly revisit as you code and solve problems.
3333

0 commit comments

Comments
 (0)