Skip to content

Commit 9470add

Browse files
committed
README updated.
1 parent a96aa4d commit 9470add

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,18 @@ A comprehensive guide for learning JavaScript fundamentals through an organized,
6262
* Most commonly used methods like `slice`, `replace`, `split`, etc.
6363
* Understanding string immutability
6464

65-
66-
65+
11. **[Arrays](docs/12-arrays.md)**
66+
67+
* An array is used to store multiple values in a single variable
68+
* Array elements are stored in adjacent memory locations
69+
* All elements of an array are of the same data type
70+
* Each array element has a unique index number
71+
* Array index starts from 0 and ends at length – 1
72+
* JavaScript supports single-dimensional and multi-dimensional arrays
73+
* A single-dimensional array stores elements in one row
74+
* Arrays can be created using the Array object or square brackets [ ]
75+
* Array elements are accessed using index values
76+
* JavaScript provides built-in methods to manipulate arrays
6777

6878
---
6979

0 commit comments

Comments
 (0)