We have a lot of array methods in JavaScript but in this blog you are gonna see only the most useful methods and after reading this, I am pretty sure that you are going to master these methods and use them to optimize your code๐
Before getting started, I am going to use arrow function and in case you don't know arrow functions don't worry, I have used normal functions (ES5 syntax) also!
So Let's get started :
This blog includes โ
- For Each
- Filter
- Map
- Sort
- Reduce
1.) For Each โ
This is a simple for loop.
Now let's try this same thing using for Each loop.
For each helps you to reduce the lines of code and makes the code much more readable.
You can also give index in for each loop:
The first parameter is the variable in which all the values are stored one by one, and the second parameter is the index of the
current iteration.
2.) Filter โ
As the name suggests, .filter() is a method which helps us to
filter some values according to a given condition.
The .filter() method creates a new array with the values which is falling under the given condition from the existing array.
3.) Map โ
.map() method creates a new array and performs a particular function for each element in the array.
This does not change the original array as it creates a new array.
4.) Sort โ
As the name suggests .sort() method helps us to sort the array according to our condition.
If the condition is true then we return 1 or else we return -1, to get a better idea about it, we can use an example:
If we want to sort the companies according to their start years.
.sort() also makes a new array and the original array is un-touched.
Here in this function we have 2 parameters 'a' and 'b' which will be assigned to 2 values from the array and then they will be compared and then filled in the new array.
5.) Reduce โ
.reduce() method reduces the whole array to a single value.
reduce method executes a given function for each value in the array from left to right (starting from index 0 to array's length - 1), for example we have to find the sum of all the ages, so without for loop we can do this using reduce function.
We have to give 0 to set the initial value from which the values will start although it is optional so you may skip it.
BONUS ๐
6.) indexOf โ
This is a bonus array method for y'all!
This method checks if the entered value is in the array or not.
If the searched value is found, it will return the position/index else it will return -1.
Note: idexOf() is cases sensitive.
Next Blog's topic -> Features introduced in ES6.
Do visit the community made by me and my friend @sumeet16 for more amazing and informative stuff, and if you wanna recommend something or give feedback, feel free to comment๐!
CodeBox's handles:
https://linktr.ee/CodeBox
Top comments (16)
indexOf is good when you need the index. If you just want to know whether the value is in the array or not, you then have to test the result against -1. Alternatively you could use .includes() to get true or false directly.
Yup thatโs correct! But indexOf tells you precisely where the value is foundโฆโ
Just a reminder that arrow functions are not just another syntax. An alternative expression with limited use.
developer.mozilla.org/en-US/docs/W...
Thanks for this post. I just finally understood reduce method๐
Awesome ๐
Thanks bro!
That's not true, sort modifies the array in place
Also, how to make these code snippets images?
Copy and Paste your code in this website : carbon.now.sh/
Thanks ๐ .
I am still confused about the methods .
confused about methods discussed in this blog?? or the term method?
I am not getting how the sort function adds the elements to a new array based on return value 1 or -1. Can you please explain this?
That is how the sort function is made...you just have to give it a variable, and if the values matches then it will get pushed into the new variable we created.
It's very helpful to me Keep it up bro ๐ฅ
Thanks bro