Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 13, 2020 06:45 pm GMT

Make Arrays your best friend with these methods!

I know many people have already written a lot about arrays, but most of them only contain the most used and basic methods.

But there are lots of not so popular methods that you can use to manipulate, iterate, and do many things with your arrays. So we are going to talk about those methods in this post using JavaScript.

Arrays

JavaScript array is a non-primitive data type that can store multiple values in it which can be of the same data type or different data type. Also, the length of a JavaScript array is not fixed.

Array methods

We all know about push(), pop(), indexOf() methods.
arr.push('x') adds x at the end of the array arr and arr.pop() removes the last item from arr.
arr.indexOf('x') finds the index of x in arr.

So let's talk about the unpopular but equally important guys here.

Manipulate arrays

  • unshift()

The unshift() method adds the new element at the beginning of the array and returns the new length of the array.

Example

const array = ["world"];array.unshift("hello"); // 2console.log(array); // ["hello", "world"]
Enter fullscreen mode Exit fullscreen mode
  • shift()

The shift() method removes the first element from the array and returns the removed element. It also changes the length of the array.

Example

const array = ["hello", "world"];array.shift(); // "hello"console.log(array); // ["world"]
Enter fullscreen mode Exit fullscreen mode
  • slice()

The slice() method returns a shallow copy of a portion of an array into a new array object selected from start to end, excluding the item at the end index. The original array is not modified

Example

const array = ["js", "py", "java", "c++", "c#"];array.slice(3); // [ 'c++', 'c#' ]array.slice(0, 2); // [ 'js', 'py' ]console.log(array); // ["js", "py", "java", "c++", "c#"]
Enter fullscreen mode Exit fullscreen mode
  • splice()

The splice() method changes the contents of an array by removing or replacing existing elements and/or adding new elements in place.

Example

const array = ["js", "py", "java", "c++", "c#"];array.splice(0, 2); // delets 2 items starting from index 0console.log(array); // ["java", "c++", "c#"]array.splice(0, 1, 'kotlin');// delets 1 item starting from index 0,// and puts 'kotlin' in that placeconsole.log(array); // ["kotlin", "c++", "c#"]
Enter fullscreen mode Exit fullscreen mode
  • join()

The join() method creates and returns a new string by concatenating all of the elements in an array separated by commas or a specified separator string.

Example

const array1 = ["1", "2", "3"];array1.join(); // "1,2,3"const array2 = ["I", "love", "programming"];array2.join("-"); // "I-love-programming"
Enter fullscreen mode Exit fullscreen mode
  • concat()

The concat() method is used to merge two or more arrays. This method does not change the existing arrays but instead returns a new array.

Example

const array1 = ['a', 'b', 'c'];const array2 = ['d', 'e', 'f'];const array3 = array1.concat(array2);console.log(array3); // ["a", "b", "c", "d", "e", "f"]
Enter fullscreen mode Exit fullscreen mode

Iterate over arrays

  • every()

The every() method tests whether all elements in the array pass the test implemented by the provided function. It returns a Boolean value.

Example

const array = [10, 2, 1, 13, 17, 19, 6, 9];array.every(item => item > 4) // falsearray.every(item => item < 20) // true
Enter fullscreen mode Exit fullscreen mode
  • some()

The some() method tests whether at least one element in the array passes the test implemented by the provided function. It returns a Boolean value.

Example

const array = [1, 2, 3, 4, 5];// checks whether an element is evenarray.some(item => item % 2 === 0); // true
Enter fullscreen mode Exit fullscreen mode
  • map()

The map() method creates a new array populated with the results of calling a provided function on every element in the calling array.

Example

const array = [1, 2, 3, 4, 5];const doubleOfArray = array.map(item => item * 2);console.log(doubleOfArray); // [2, 4, 6, 8, 10]
Enter fullscreen mode Exit fullscreen mode
  • filter()

The filter() method creates a new array with all elements that pass the test implemented by the provided function.

Example

const array = [1, 2, 3, 4, 5];// only the element that are evenconst evenArray = array.filter(item => item % 2 === 0);console.log(evenArray); // [2, 4]
Enter fullscreen mode Exit fullscreen mode

Reduction methods

  • reduce()

The reduce() method executes a reducer function defined by you on each element of the array, resulting in a single output value.

Example

const array = [1, 2, 3, 4, 5];// ((((1-2)-3)-4)-5) = -13const result = array.reduce((accumulator, current) => accumulator - current);console.log(result); // -13
Enter fullscreen mode Exit fullscreen mode
  • reduceRight()

The reduceRight() method applies a function against an accumulator and each value of the array (from right-to-left) to reduce it to a single value.

Example

const array = [1, 2, 3, 4, 5];// ((((5-4)-3)-2)-1) = -5const result = array.reduceRight((accumulator, current) => accumulator - current);console.log(result); // -5
Enter fullscreen mode Exit fullscreen mode

Sorting arrays

  • sort()

The sort() method sorts the elements of an array in place and returns the sorted array. The default sort order is ascending.

Example

const months = ['March', 'Jan', 'Feb', 'Dec'];const nums = [4, 6, 2, 5, 1, 7, 3]months.sort();nums.sort();console.log(months); // ["Dec", "Feb", "Jan", "March"]console.log(nums); // [1, 2, 3, 4, 5, 6, 7]
Enter fullscreen mode Exit fullscreen mode
  • reverse()

The reverse() method reverses an array in place and returns the sorted array. Don't confuse it with sorting in descending order.

Example

const nums = [4, 6, 2, 5, 1, 7, 3]nums.reverse();console.log(nums); // [3, 7, 1, 5, 2, 6, 4]
Enter fullscreen mode Exit fullscreen mode

That's it. You have made a new best friend now.

Thanks for reading.
If you want to get a deeper knowledge of Arrays in JavaScript then make sure to read the MDN docs of Array here Array - JavaScript | MDN

Comment here if you have any questions about these awesome array methods.

If you like my blogs Follow me here on Dev.to

My Github


Original Link: https://dev.to/soumyadey/make-arrays-your-best-friend-with-these-methods-59ld

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To