Computer for SEE and NEB

It is a complete SEE and NEB solution for computer science. It includes Computer Fundamentals, Database (SQL), Programming in C QBASIC, CSS, JavaScript, and PHP for beginners.

Breaking

Post Top Ad

Your Ad Spot

Wednesday, March 8, 2023

Array in JavaScript

Array in JavaScript


Array in JavaScript


Introduction

Arrays are an essential data structure in JavaScript that allows programmers to store and manipulate collections of values. In this article, we will discuss what arrays are, how they work, and how to use Array in JavaScript.

What is an Array in JavaScript?

An array is a collection of data elements that are stored in a contiguous memory location. In JavaScript, arrays are a type of object that can hold multiple values in a single variable. Each value in an array is called an element, and each element is identified by an index, which is a numeric value that represents its position within the array.


Declaring an Array in JavaScript:


An array can be declared in JavaScript using the array constructor or the array literal notation. The array constructor is a built-in function in JavaScript, and it can be called using the "new" keyword.

Here's an example:

let array1 = new Array();

This will create an empty array called "array1." You can also create an array using the array literal notation, which is much more common in JavaScript.

Here's an example:

let array2 = [];

This will create an empty array called "array2." You can add elements to the array using the push method.

Here's an example:

let array3 = [];
array3.push("apple");
array3.push("orange");
array3.push("banana");


This will create an array called "array3" with three elements: "apple," "orange," and "banana."

Accessing Array Elements:


You can access the elements of an array using their index. The index of the first element in an array is always 0, and the index of the last element is always the length of the array minus one. 

Here's an example:

let array4 = ["apple", "orange", "banana"];
console.log(array4[0]); // "apple"
console.log(array4[1]); // "orange"
console.log(array4[2]); // "banana"

You can also use negative indexes to access elements from the end of the array. For example, array4[-1] would return "banana."


Accessing and Modifying Array Elements


To access the elements of an array in JavaScript, you can use square bracket notation. The first element of an array has an index of 0, and the last element has an index of array.length – 1

For example:

let myArray = [1, 2, 3, 4, 5];
console.log(myArray[0]); // output: 1
console.log(myArray[4]); // output: 5

You can also modify the elements of an array by assigning a new value to an element using square bracket notation:

let myArray = [1, 2, 3, 4, 5];
myArray[0] = 10;
console.log(myArray); // output: [10, 2, 3, 4, 5]


Iterating Over an Array:

You can iterate over an array using a for loop.

Here's an example:

let array5 = ["apple", "orange", "banana"];
for (let i = 0; i < array5.length; i++) {
console.log(array5[i]);
}

Output:

"apple"
"orange"
"banana"

You can also use the forEach method to iterate over an array.

Here's an example:

let array6 = ["apple", "orange", "banana"];
array6.forEach(function(element) {
console.log(element);
});

Output:

"apple"
"orange"
"banana"



Array Properties


JavaScript arrays have several properties that provide information about the array. Here are some of the most commonly used array properties:

  • length: Returns the length of the array.
  • constructor: Returns the function that created the array.
  • prototype: Allows you to add properties and methods to all arrays.

Array Methods in JavaScript

JavaScript has several built-in methods for manipulating arrays. Some of the most commonly used array methods in JavaScript are:

1. push(): adds one or more elements to the end of an array.

Example:

let arr = [1, 2, 3];
arr.push(4); // [1, 2, 3, 4]



2. pop(): removes the last element from an array and returns it.

Example:

let arr = [1, 2, 3];
arr.pop(); // 3



3. shift(): removes the first element from an array and returns it.

Example:

let arr = [1, 2, 3];
arr.shift(); // 1



4. unshift(): adds one or more elements to the beginning of an array.

Example:

let arr = [1, 2, 3];
arr.unshift(0); // [0, 1, 2, 3]


5. slice(): returns a new array containing a portion of the original array.

Example:

let arr = [1, 2, 3, 4, 5];
let subArr = arr.slice(1, 4); // [2, 3, 4]


6. splice(): removes or replaces elements in an array at a given index.

Example:

let arr = [1, 2, 3, 4, 5];
arr.splice(2, 2); // [3, 4]


7. concat(): joins two or more arrays and returns a new array.

Example:

let arr1 = [1, 2, 3];
let arr2 = [4, 5];
let newArr = arr1.concat(arr2); // [1, 2, 3, 4, 5]



8. sort(): sorts the elements of an array in ascending or descending order.

Example:

let arr = [4, 2, 5, 1, 3];
arr.sort(); // [1, 2, 3, 4, 5]



9. reverse(): reverses the order of the elements in an array.

Example:

let arr = [1, 2, 3];
arr.reverse(); // [3, 2, 1]


10. join(): joins all elements of an array into a string.

Example:

let arr = [1, 2, 3];
arr.join('-'); // '1-2-3'


Multi-Dimensional Arrays in JavaScript


Multi-dimensional arrays in JavaScript are arrays that contain one or more arrays as their elements. These arrays are also known as nested arrays, and they allow developers to store and manipulate data in a more complex way.

Declaring a Multi-Dimensional Array


To declare a multi-dimensional array in JavaScript, we can simply create an array that contains one or more arrays as its elements.

Here is an example:

let myArray = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
];

In this example, myArray is a two-dimensional array with three sub-arrays.

Accessing Elements in a Multi-Dimensional Array


To access an element in a multi-dimensional array, we need to use multiple indices. Each index corresponds to the position of the element in each nested array.

Here is an example:

let myArray = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
];

console.log(myArray[0][0]); // Output: 1
console.log(myArray[1][2]); // Output: 6

In this example, we are accessing the element at index 0 in the first nested array (value 1) and the element at index 2 in the second nested array (value 6).



Conclusion


Arrays are a fundamental data structure in JavaScript that allow us to store and manipulate collections of data. In this article we learn how to use array in JavaScript. We can declare and initialize arrays, access their elements, and use various methods to add, remove, and modify their contents. By mastering arrays, we can build more complex programs and create more dynamic user experiences.

No comments:

Post a Comment

Post Top Ad

Your Ad Spot

Pages