Top 10 JavaScript Array Functions You Should Master as a Developer (Part II)

Rohit Singh
7 min readAug 8, 2024

--

Top 10 JavaScript Array Functions You Should Master as a Developer (Part II)

Introduction

In Part I of this series, we discussed some of the most basic JavaScript array functions that every developer should have in their toolkit. These functions, including forEach(), map(), and reduce(), are powerful tools for manipulating arrays and transforming data in efficient and effective ways.

But being proficient in JavaScript doesn’t stop there. The language offers a wealth of additional array methods that can make your code even more concise, readable, and versatile. In Part II, we’ll explore ten more array functions that are equally essential for developers who want to take their skills to the next level.

These functions may be less commonly used in everyday coding, but they are invaluable in specific scenarios. Whether you’re combining arrays with concat(), slicing arrays with slice(), or flattening arrays with flat(), each function in this list will help you handle data more efficiently and write more robust code.

1. concat()

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

let newArray = array1.concat(array2, array3, ...);

Example:

const array1 = [1, 2, 3]; 
const array2 = [4, 5, 6];
const array3 = [7, 8, 9];
const combinedArray = array1.concat(array2, array3);

console.log(combinedArray);
// Output: [1, 2, 3, 4, 5, 6, 7, 8, 9]

Use Cases:

  • Merging arrays: When you need to combine multiple arrays into a single array without modifying the original arrays.
  • Creating a copy: You can also use concat() to create a shallow copy of an array by concatenating it with an empty array.
const copyArray = array1.concat(); 

console.log(copyArray); // Output: [1, 2, 3]

2. slice()

Description:
The slice() method returns a shallow copy of a portion of an array into a new array object selected from start to end (end not included). The original array is not modified.

Syntax:

let newArray = array.slice(start, end);
const fruits = ['apple', 'banana', 'orange', 'mango', 'pear'];  
const citrus = fruits.slice(2, 4);

console.log(citrus);
// Output: ['orange', 'mango']

Use Cases:

  • Extracting a portion of an array: Use slice() when you need to create a new array that contains a subset of the elements in the original array.
  • Copying an array: You can use slice() with no arguments to make a shallow copy of an array.
const fruitsCopy = fruits.slice(); 

console.log(fruitsCopy);
// Output: ['apple', 'banana', 'orange', 'mango', 'pear']

3. splice()

Description:
The splice() method changes the contents of an array by removing or replacing existing elements and/or adding new elements in place. Unlike slice(), splice() modifies the original array.

Syntax:

array.splice(start, deleteCount, item1, item2, ...);

Example:

const numbers = [1, 2, 3, 4, 5];  // Remove 2 elements starting from index 2 
const removed = numbers.splice(2, 2);

console.log(numbers); // Output: [1, 2, 5]
console.log(removed); // Output: [3, 4] // Add elements at index 1
numbers.splice(1, 0, 10, 20);

console.log(numbers); // Output: [1, 10, 20, 2, 5]

Use Cases:

  • Removing elements: Use splice() to remove elements from an array at a specific index.
  • Inserting elements: You can also use splice() to insert elements into an array at a specific position.
  • Replacing elements: Replace existing elements by removing them and adding new ones in the same operation.

4. flat()

Description:
The flat() method creates a new array with all sub-array elements concatenated into it recursively up to the specified depth. It’s particularly useful for flattening nested arrays.

Syntax:

let newArray = array.flat(depth);

Example:

const nestedArray = [1, [2, [3, [4]], 5]];  const flatArray = nestedArray.flat(2); console.log(flatArray); // Output: [1, 2, 3, [4], 5]

Use Cases:

  • Flattening nested arrays: When working with multi-dimensional arrays, flat() helps simplify the structure by reducing the levels of nesting.
  • Data normalization: Use flat() to normalize data structures, making them easier to work with.
const deeplyNestedArray = [1, 2, [3, 4, [5, 6, [7, 8]]]]; 
const flatArray = deeplyNestedArray.flat(Infinity);

console.log(flatArray); // Output: [1, 2, 3, 4, 5, 6, 7, 8]

5. flatMap()

Description:
The flatMap() method first maps each element using a mapping function, then flattens the result into a new array. It is identical to performing a map() followed by a flat() of depth 1, but it’s more efficient.

Syntax:

let newArray = array.flatMap(callback(currentValue, index, array), thisArg);

Example:

const numbers = [1, 2, 3, 4];  
const mappedAndFlattened = numbers.flatMap(num => [num, num * 2]);

console.log(mappedAndFlattened); // Output: [1, 2, 2, 4, 3, 6, 4, 8]

Use Cases:

  • Mapping and flattening in one step: When you need to apply a transformation to each element of an array and flatten the result, flatMap() is the ideal choice.
  • Data processing: Use flatMap() in scenarios where each input needs to generate multiple outputs that should be flattened into a single array.
const words = ['hello', 'world'];  
const letters = words.flatMap(word => word.split(''));

console.log(letters);
// Output: ['h', 'e', 'l', 'l', 'o', 'w', 'o', 'r', 'l', 'd']

6. from()

Description:
The Array.from() method creates a new, shallow-copied array instance from an array-like or iterable object. It’s particularly useful when you need to convert objects like NodeLists or arguments into arrays.

Syntax:

let newArray = Array.from(arrayLikeObject, mapFunction, thisArg);

Example:

const string = "Hello"; 
const charArray = Array.from(string);

console.log(charArray); // Output: ['H', 'e', 'l', 'l', 'o']

Use Cases:

  • Converting array-like objects: Use Array.from() to convert objects like NodeLists or arguments into arrays, allowing you to use array methods on them.
function sumAll() {
const argsArray = Array.from(arguments);
return argsArray.reduce((sum, current) => sum + current, 0);
}
console.log(sumAll(1, 2, 3)); // Output: 6
  • Mapping while creating an array: Array.from() can also apply a mapping function while creating the array.
const doubled = Array.from([1, 2, 3], x => x * 2); 

console.log(doubled); // Output: [2, 4, 6]

7. indexOf()

Description:
The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present. This method uses strict equality (===) to search for the element.

Syntax:

let index = array.indexOf(element, startIndex);

Example:

const fruits = ['apple', 'banana', 'orange', 'mango', 'banana'];  
const index = fruits.indexOf('banana');

console.log(index); // Output: 1

Use Cases:

  • Finding the position of an element: Use indexOf() to locate the first occurrence of a specific element in an array.
  • Checking existence: You can use indexOf() to determine if an element exists in an array (returns -1 if not found).
if (fruits.indexOf('grape') === -1) {
console.log('Grape is not in the list');
} // Output: Grape is not in the list

8. lastIndexOf()

Description:
The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backward, starting at fromIndex.

Syntax:

let index = array.lastIndexOf(element, fromIndex);

Example:

const fruits = ['apple', 'banana', 'orange', 'mango', 'banana'];  
const lastIndex = fruits.lastIndexOf('banana');

console.log(lastIndex); // Output: 4

Use Cases:

  • Finding the last occurrence: Use lastIndexOf() when you need to find the last occurrence of an element in an array.
  • Reverse searching: Particularly useful when searching for an element from the end of the array towards the beginning.
const indexFromEnd = fruits.lastIndexOf('banana', 3); 
console.log(indexFromEnd); // Output: 1

9. join()

Description:
The join() method creates and returns a new string by concatenating all elements in an array, separated by a specified separator string. If no separator is provided, a comma (,) is used by default.

Syntax:

let string = array.join(separator);

Example:

const words = ['JavaScript', 'is', 'awesome'];  const sentence = words.join(' '); console.log(sentence); // Output: 'JavaScript is awesome'
  • Use Cases:
  • Creating a sentence from words: join() is particularly useful for converting an array of words into a single sentence or string.
  • Custom formatting: Use join() to create custom formats, such as combining an array of values into a CSV string.
const numbers = [1, 2, 3, 4, 5];  const csv = numbers.join(','); console.log(csv); // Output: '1,2,3,4,5'

10. reverse()

Description:
The reverse() method reverses the elements of an array in place. The first array element becomes the last, and the last becomes the first. Note that this method modifies the original array.

Syntax:

array.reverse();

Example:

const numbers = [1, 2, 3, 4, 5];  numbers.reverse(); console.log(numbers); // Output: [5, 4, 3, 2, 1]

Use Cases:

  • Reversing array order: reverse() is useful when you need to invert the order of elements in an array, such as reversing the order of a sorted list.
  • Palindrome checking: You can use reverse() in algorithms to check if a string (converted to an array of characters) reads the same backward as forward.
const word = 'level'; const isPalindrome = word.split('').reverse().join('') === word; console.log(isPalindrome); // Output: true

Conclusion

In this second part of our exploration of essential JavaScript array functions, we’ve delved into ten more powerful methods that can significantly enhance your coding toolkit. From combining arrays with concat() to transforming nested arrays with flatMap(), each function adds a unique capability that can help you handle a wide variety of tasks more efficiently.

These functions, along with those covered in Part I, form a comprehensive set of tools that every JavaScript developer should master. By understanding and applying these array methods in your projects, you’ll be better equipped to write more concise, readable, and maintainable code. Remember, the key to mastery is not just knowing these functions but also understanding when and how to use them effectively.

Keep practicing, experiment with combining these functions, and don’t be afraid to push the boundaries of what you can do with arrays in JavaScript.

Call to Action

What do you think about the array functions covered in this series? Have you tried using them in your projects? We’d love to hear your thoughts, experiences, or any questions you might have — drop a comment below!

If you enjoyed this post, don’t forget to subscribe to our blog for more JavaScript tutorials, coding tips, and deep dives into the world of web development. We’re always here to help you grow as a developer.

Looking for more resources? Be sure to check out Part I of this series if you haven’t already, and explore our other blog posts for more insights into JavaScript and beyond.

Happy coding, and stay tuned for more!

--

--

Rohit Singh
Rohit Singh

Written by Rohit Singh

Hello, this is Rohit Singh a frontend developer, freelancer, and blogger. I have been working in the tech industry for 5 years .

Responses (1)