Class 4 - Arrary
Array¶
Array is a powerful data structure for managing and handling data in any programming language. While the syntax and notation of arrays vary from language to language, the fundamental concepts remain similar.
Why Use Arrays?¶
Suppose you want to print the names of five land-use types. Without using an array, you would do it like this:
console.log("Waterbody");
console.log("Bare_land");
console.log("Settlement");
console.log("Vegetation");
Instead of storing each land-use name in separate variables, using an array makes it more convenient and easier to manage. For instance:
var landUseType = ["Waterbody", "Bare_land", "Settlement", "Vegetation"];
for (var i = 0; i < landUseType.length; i++) {
console.log(landUseType[i]);
}
Arrays provide a structured way to store and access multiple values under a single variable, especially helpful when dealing with extensive lists.
Creating an Array¶
Creating arrays in JavaScript can be done using an array literal:
You can also declare an empty array and assign values later:
var landUseType = [];
landUseType[0] = "Waterbody";
landUseType[1] = "Bare_land";
landUseType[2] = "Settlement";
Accessing Array Elements¶
Arrays use index numbers to access elements, starting from 0. We can access any element of an array by its relevant index. In all programming languages, indexing starts from 0.
For example:
In this array, the index of "Padma" is 0, "Meghna" is 1, and "Jamuna" is 2. The index number will increase by 1 if we add more elements. To get the first element of this array, we will use ar[0]
.
More examples:
var landUseType = ["Waterbody", "Bare_land", "Settlement", "Vegetation"];
var waterbody = landUseType[0]; // Accesses the first element
Modifying Array Elements¶
You can easily change the value of an array element by referencing its index:
Array Properties and Methods¶
JavaScript arrays come with built-in properties and methods that enhance their functionality. Some of those are:
length
: Returns the total number of elements in an array.sort()
: Sorts the elements of the array.
Example of length
Property:¶
The length
property returns the number of elements in an array. Here's an example:
var fruits = ["Apple", "Banana", "Orange", "Mango"];
// Get the length of the array
var arrayLength = fruits.length;
console.log("Number of elements in the array: " + arrayLength);
// Output: Number of elements in the array: 4
Example of sort()
Method:¶
The sort()
method is used to sort the elements of an array. By default, it sorts elements as strings, so for numbers, you need to provide a comparison function:
For sorting strings alphabetically, you don't need to provide a comparison function:
var fruits = ["Apple", "Banana", "Orange", "Mango"];
// Sorting the array alphabetically
fruits.sort();
console.log("Sorted fruits: " + fruits);
// Output: Sorted fruits: Apple,Banana,Mango,Orange
In JavaScript, the map()
method is a versatile tool for transforming arrays with ease and efficiency. Let's explore the map()
method using your provided code example.
What is map()
?
map()
is a built-in method in JavaScript used to transform each element of an array based on a provided function.
Syntax
array
: The original array you want to transform.callback
: A function that defines the transformation for each element.
How it Works
map()
iterates through each element of the array.- For each element, it applies the provided function (callback) and collects the return value into a new array.
- The resulting array contains the transformed elements, leaving the original array unchanged.
Example¶
var numList = [2, 3, 4, 5]; // Original array
function doublingNuml(num) {
return num * 2; // Function to double a number
}
var doubledNum = numList.map(doublingNuml); // Using map() to double each element
console.log(doubledNum); // Outputting the new array with doubled values
In your provided code example, you're using the map()
method to double each number in the numList
array using the doublingNuml
function. Let's break it down:
var numList = [2, 3, 4, 5]; // Original array
function doublingNuml(num) {
return num * 2; // Function to double a number
}
var doubledNum = numList.map(doublingNuml); // Using map() to double each element
console.log(doubledNum); // Outputting the new array with doubled values
- We have an array
numList
containing[2, 3, 4, 5]
. - We define a function
doublingNuml(num)
that takes a numbernum
and returnsnum * 2
, effectively doubling it. - We use the
map()
method on thenumList
array with thedoublingNuml
function. This applies thedoublingNuml
function to each element of the array and creates a new arraydoubledNum
with the doubled values. - Finally, we log the new array
doubledNum
to the console, which contains[4, 6, 8, 10]
, the result of applying thedoublingNuml
function to each element of the original array.
This demonstrates how the map()
method can be used to efficiently transform array elements based on a provided function, resulting in a new array with the transformed values.
Looping Through Arrays¶
You can iterate through array elements using a for
loop or the forEach()
function:
// Using a for loop
var landUseType = ["Waterbody", "Bare_land", "Settlement", "Vegetation"];
for (var i = 0; i < landUseType.length; i++) {
// Process each element
}
// Using forEach
landUseType.forEach(function (value) {
// Process each element
});
Adding Array Elements¶
To add new elements to an array, you can use the push()
method or directly assign values using the length property: