JavaScript Array Tutorial – Array Methods in JS

#javascript #javascriptdeveloper #github #githubrepositories #CSS #Tailwindcss #Tailwind #webdevelopment #html5 #react #node Learn Javascript Array Method with simple ways and examples
Javascript Array Method

If you are a javascript developer and you do some iteration using javascript for loop and the for compare between two javascript arrays we need to write two different for loops and the we will be able to compare, this all make lots of efforts to a javascript developer and increase the length of the code as well. To get ride of these ittrations and double ittrations there are sevral cool javascript array method are introduced in ES5 and ES6 . so in this blog we are going to understand these methods and how to solve our problems with the help of javascript array methods.

Array Methods In Javascript

  1. Array.forEach Method
  2. Array.map Method
  3. Array.findIndex
  4. Array.filter Method
  5. Array.every Method
  6. Array.some Method
  7. Array.reduce Method

Now Lets Go through each of the methods listed above and understand with example

Array.forEach Method

The method name itself having meaning for each (each element) so if we have an array this method will help us to itrate with each element of that array , let go with the below exampl of array.

Suppose we have certain names of student which are in array and we want to get perticuler name “sunil” in that array below is the array code

To itrate each element of the above array we will use array.forEach method where array is the name of the variable i.e studentName. So lets write a code to itrate each element of array.

In the console, you will be able to see all the names of student got printed. Now lets check if the element contains student with name sunil, let check the below code.

Note : We need to keep in mind that for each loop will never return a value

As mentioned above in note. For each will never return a value, let understand more with below example

You will be able to see the above console is undefined , also It does not return any value, even if you explicitly return a value from the callback function

In all the above examples, we have used only the first parameter of the callback function. But the callback function also receives two additional parameters, which are:

  • index – the index of the element which is currently being iterated
  • array – original array which we’re looping over

Advantages of using forEach instead of a for loop

  • Using a forEach loop makes your code shorter and easier to understand
  • When using a forEach loop, we don’t need to keep track of how many elements are available in the array. So it avoids the creation of an extra counter variable.
  • Using a forEach loop makes code easy to debug because there are no extra variables for looping through the array
  • The forEach loop automatically stops when all the elements of the array are finished iterating.

Array.map Method

As above, this method is also used to iterate over an array. The only difference is it will return a new array based on the logic and callback function applied on each element of the array. We need to keep in mind that the array map() method does not modify the original array. Also, in the array map method, the functions are not executable on empty elements of the array.

Array.Map Method Example

Let’s go through a simple example of writing a table of multiples of an array with the number two, which returns a new array as a result.

From the above example, we have declared a new variable result which will store a new array based on what the map function will return.

If we try to achive above example with for each loop , it will not work , please check the below screen

Array.findIndex

Array findIndex method will return the index of the ittrated element with callback function , if the conditions or call back function if false the it will retuen index value as -1 which means the element is not present at any index of the array. Lets go through below example to understand more on it.

The above code will return 2 as a result which means the string “Mar” is existing at index 2

Now lets go through one more senario where we pass a string which is not present in the above array

in the above code june is not present in the array list so it will return result as -1 .

Array.filter() Method

Method name itself provides the method meaning. So it will return a new array as a map function does on the basis os stisying argument conditions it will return a new array.

let go through an example to unserstand more about this method. suppose we need to find people with age more then 18 years who can vote in election.

So we have a map method also which dose similer things what filter method will do. but then why javascript introduce filter method , lets try to differentiate between map and filter method

Difference Between Map and Filter Method

The map method is used to apply a function on every element of an array, which will return a new array with the same length as the previous array passed to the map method. However, in the case of the filter method, it will return a new array after qualifying the condition passed as an argument, which will filter only those elements that qualify the callback method. In the case of the filter method, the length of the new array may differ from the array initially passed to the filter method.

Array.every Method

With the JavaScript Array every() method, you can assess if all elements in an array satisfy a test defined by a function. It will return true if all elements pass the condition, or false if any fail. This method is practical for validating or checking requirements on array elements.

Let go through an example to understand more about it

  • In this example we Applies the every() method to array arr using the isEven callback function.
  • Checks if every element in arr satisfies the condition of being even.
  • Returns true if all elements are even; otherwise, returns false.

Further reading

  • React UseEffect | simplifyScript

    Understanding the useEffect hook in React

    In this article, we will learn about another React hook called useEffect(), through this article you will be able to understand what is react useEffect Hook and how to use useEffect() hook in react, this is most communally used hook after useState() hook, we mostly use this hook in every component on react now first […]
  • React useState function

    How to Use useState Hook in React Application

     In a React application, normal vanilla JavaScript may not work for some concepts. For example, if I want to toggle a class on a button click or add and remove classes, I might need to show a popup on the website. This can be easily achieved in vanilla JavaScript using the element.classList.toggle(“newClass”) method, allowing us to add […]
  • javascript DOm manipulation - simplifyscript

    What is DOM manipulation in javascript 

    In this article, we will explore JavaScript DOM manipulation, a key feature of JavaScript that allows developers to modify the Document Object Model (DOM) of a webpage. DOM manipulation enables you to dynamically alter the content and structure of HTML documents. To grasp this concept thoroughly, we’ll start by defining what the DOM is and […]