Arrays
1. What is an array in JavaScript?
In JavaScript, an array is like a list that can hold multiple pieces of information all together. Imagine you have a box with compartments, and you can put different things into each compartment. That's how an array works. You can put numbers, strings, and so on inside it. Each piece of information in the array has a number called an index to help you find it. Arrays are super useful because they let you organize and work with lots of data in your code.
Key Notes
- An array in JavaScript is like a collection of items bundled together.
- It acts like a list where you can store multiple pieces of data under one name.
- Each item in an array has a number called an index that helps you access it.
2. How to create an array in JavaScript?
To create an array in JavaScript, you simply use square brackets []
and put the elements inside them, separated by commas. For example, to make an array of numbers, you can write let numbers = [1, 2, 3, 4, 5];
. If you want to create an array of strings, you can do let fruits = ['apple', 'banana', 'orange'];
. You can even mix different types of elements in an array like let mixedArray = [1, 'hello', true];
. Just remember, each element in the array is separated by a comma, and the whole array is enclosed in square brackets.
Key Notes
- To create an array in JavaScript, use square brackets
[]
. - Separate elements within the array with commas.
- You can mix different types of elements in an array.
3. How to access elements in an array?
To access elements in an array in JavaScript, you use square brackets []
with the index number of the element you want to access. In JavaScript, array indexing starts from 0, so the first element is at index 0, the second at index 1, and so on. Here's a simple example:
// Creating an array
const fruits = ["Apple", "Banana", "Orange"];
// Accessing the first element (Apple)
const firstFruit = fruits[0];
// Accessing the second element (Banana)
const secondFruit = fruits[1];
// Accessing the third element (Orange)
const thirdFruit = fruits[2];
console.log(firstFruit); // Output: Apple
console.log(secondFruit); // Output: Banana
console.log(thirdFruit); // Output: Orange
In this example, fruits[0]
accesses the first element Apple
, fruits[1]
accesses the second element Banana
, and fruits[2]
accesses the third element Orange
.
Key Notes
- To access elements in an array in JavaScript, use square brackets
[]
with the index number of the element. - Array indexing starts from 0, so the first element is at index 0, the second at index 1, and so on.
4. How to find the length of an array?
To find the length of an array in JavaScript, you can use the length
property. This property tells you how many elements are there in the array. Here's a simple example:
const myArray = [1, 2, 3, 4, 5];
const arrayLength = myArray.length;
console.log("The length of the array is: " + arrayLength);
In this code, myArray.length
will give you the number of elements in the array myArray
, and it will be assigned to the variable arrayLength
. Then, we log this length to the console. So, if myArray
has 5 elements, the output will be The length of the array is: 5
.
Key Notes
- Use the
length
property of the array.
5. How to add elements to the end of an array?
To add elements to the end of an array in JavaScript, you can use the push()
method. This method adds one or more elements to the end of an array and returns the new length of the array. Here's an example:
const numbers = [1, 2, 3, 4, 5];
numbers.push(6); // Adding a single element
console.log(numbers); // Output: [1, 2, 3, 4, 5, 6]
In this code, numbers.push(6)
adds the number 6
to the end of the numbers
array. After this operation, the array will be [1, 2, 3, 4, 5, 6]
.
Key Notes
- Use the
push()
method to add elements to the end of an array. - You can add multiple elements by passing them as arguments to
push()
. - The
push()
method modifies the original array.
6. How to add elements to the beginning of an array?
To add elements to the beginning of an array in JavaScript, you can use the unshift()
method. This method adds one or more elements to the beginning of an array and returns the new length of the array. Here's an example:
const numbers = [2, 3, 4, 5];
numbers.unshift(1); // Adding a single element
console.log(numbers); // Output: [1, 2, 3, 4, 5]
In this code, numbers.unshift(1)
adds the number 1
to the beginning of the numbers
array. After this operation, the array will be [1, 2, 3, 4, 5]
.
Key Notes
- Use the
unshift()
method to add elements to the beginning of an array. - You can add multiple elements by passing them as arguments to
unshift()
. - The
unshift()
method modifies the original array.
7. How to remove elements from the end of an array?
To remove elements from the end of an array in JavaScript, you can use the pop()
method. This method removes the last element from an array and returns that element. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const removedElement = numbers.pop();
console.log(removedElement); // Output: 5
In this code, numbers.pop()
removes the last element 5
from the numbers
array and assigns it to the variable removedElement
. After this operation, the array will be [1, 2, 3, 4]
.
Key Notes
- Use the
pop()
method to remove elements from the end of an array. - The
pop()
method modifies the original array. - The removed element is returned by the
pop()
method.
8. How to remove elements from the beginning of an array?
To remove elements from the beginning of an array in JavaScript, you can use the shift()
method. This method removes the first element from an array and returns that element. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const removedElement = numbers.shift();
console.log(removedElement); // Output: 1
In this code, numbers.shift()
removes the first element 1
from the numbers
array and assigns it to the variable removedElement
. After this operation, the array will be [2, 3, 4, 5]
.
Key Notes
- Use the
shift()
method to remove elements from the beginning of an array. - The
shift()
method modifies the original array. - The removed element is returned by the
shift()
method.
9. How to find if an element is in an array?
To find if an element is in an array in JavaScript, you can use the includes()
method. This method checks if an array includes a certain element and returns true
or false
accordingly. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const hasThree = numbers.includes(3);
console.log(hasThree); // Output: true
In this code, numbers.includes(3)
checks if the number 3
is present in the numbers
array. Since 3
is present, the output will be true
.
Key Notes
- Use the
includes()
method to find if an element is in an array. - The
includes()
method returnstrue
if the element is found,false
otherwise.
10. How to find the index of an element in an array?
To find the index of an element in an array in JavaScript, you can use the indexOf()
method. This method returns the first index at which a given element can be found in the array, or -1
if it is not present. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const index = numbers.indexOf(3);
console.log(index); // Output: 2
In this code, numbers.indexOf(3)
finds the index of the number 3
in the numbers
array. Since 3
is at index 2
, the output will be 2
.
Key Notes
- Use the
indexOf()
method to find the index of an element in an array. - The
indexOf()
method returns the index of the element if found,-1
otherwise. - The
indexOf()
method returns the first occurrence of the element. - If you want to find last occurrence, you can use
lastIndexOf()
method.
11. How to check if an object is an array?
To check if an object is an array in JavaScript, you can use the Array.isArray()
method. This method returns true
if the object is an array, false
otherwise. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const isAnArray = Array.isArray(numbers);
console.log(isAnArray); // Output: true
In this code, Array.isArray(numbers)
checks if the numbers
object is an array. Since numbers
is an array, the output will be true
.
Key Notes
- Use the
Array.isArray()
method to check if an object is an array.
12. How to convert a string to an array by splitting it based on a separator?
To convert a string to an array in JavaScript, you can use the split()
method. This method splits a string into an array of substrings based on a specified separator and returns the new array. Here's an example:
const myString = "Hello,World,JavaScript";
const myArray = myString.split(",");
console.log(myArray); // Output: ["Hello", "World", "JavaScript"]
In this code, myString.split(",")
splits the string myString
at each comma ,
and creates an array myArray
with the substrings. The output will be ["Hello", "World", "JavaScript"]
.
Key Notes
- Use the
split()
method to convert a string to an array. - The
split()
method takes a separator as an argument.
13. How to convert an array to a string by joining its elements?
To convert an array to a string in JavaScript, you can use the join()
method. This method joins all elements of an array into a string and returns the new string. Here's an example:
const myArray = ["Hello", "World", "JavaScript"];
const myString = myArray.join(",");
console.log(myString); // Output: "Hello,World,JavaScript"
In this code, myArray.join(",")
joins the elements of the myArray
array with a comma ,
and creates a string myString
. The output will be "Hello,World,JavaScript"
.
Key Notes
- Use the
join()
method to convert an array to a string. - The
join()
method takes a separator as an argument.
14. How to loop through elements in an array?
To loop through elements in an array in JavaScript, you can use a for
loop, a for...of
loop, or the forEach()
method. Here are examples of each method:
Using a for
loop:
const numbers = [1, 2, 3, 4, 5];
for (let i = 0; i < numbers.length; i++) {
console.log(numbers[i]);
}
Using a for...of
loop:
const numbers = [1, 2, 3, 4, 5];
for (const number of numbers) {
console.log(number);
}
Using the forEach()
method:
const numbers = [1, 2, 3, 4, 5];
numbers.forEach((number) => {
console.log(number);
});
In these examples, we loop through the numbers
array and log each element to the console. You can choose the method that best fits your needs.
Key Notes
- Use a
for
loop, afor...of
loop, or theforEach()
method to loop through elements in an array.
15. How to copy an array?
To copy an array in JavaScript, you can use the slice()
method or the spread operator ...
. Here are examples of each method:
Using the slice()
method:
const originalArray = [1, 2, 3, 4, 5];
const copiedArray = originalArray.slice();
Using the spread operator ...
:
const originalArray = [1, 2, 3, 4, 5];
const copiedArray = [...originalArray];
In these examples, originalArray.slice()
and [...originalArray]
create a shallow copy of the originalArray
. This means that the copied array is a new array with the same elements as the original array, but modifying the copied array does not affect the original array.
Key Notes
- Use the
slice()
method or the spread operator...
to copy an array. - Both methods create a shallow copy of the original array.
16. How to merge two arrays?
To merge two arrays in JavaScript, you can use the concat()
method or the spread operator ...
. Here are examples of each method:
Using the concat()
method:
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const mergedArray = array1.concat(array2);
Using the spread operator ...
:
const array1 = [1, 2, 3];
const array2 = [4, 5, 6];
const mergedArray = [...array1, ...array2];
In these examples, array1.concat(array2)
and [...array1, ...array2]
merge the array1
and array2
arrays into a new array mergedArray
. The resulting array contains all elements from both arrays.
Key Notes
- Use the
concat()
method or the spread operator...
to merge two arrays. - Both methods create a new array with elements from both arrays.
17. How to reverse an array?
To reverse an array in JavaScript, you can use the reverse()
method. This method reverses the elements of an array in place and returns the reversed array. Here's an example:
const numbers = [1, 2, 3, 4, 5];
numbers.reverse();
In this code, numbers.reverse()
reverses the elements of the numbers
array. After this operation, the array will be [5, 4, 3, 2, 1]
.
Key Notes
- Use the
reverse()
method to reverse an array. - The
reverse()
method modifies the original array. - The
reverse()
method returns the reversed array.
18. How to sort an array?
To sort an array in JavaScript, you can use the sort()
method. This method sorts the elements of an array in place and returns the sorted array. Here's an example:
const numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5];
numbers.sort();
In this code, numbers.sort()
sorts the elements of the numbers
array. After this operation, the array will be [1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9]
.
You can also provide a compare function to the sort()
method to sort elements as numbers or in a custom order. Here's an example:
const numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5];
numbers.sort((a, b) => a - b);
In this code, numbers.sort((a, b) => a - b)
sorts the elements of the numbers
array in ascending order. After this operation, the array will be [1, 1, 2, 3, 3, 4, 5, 5, 5, 6, 9]
.
Key Notes
- Use the
sort()
method to sort an array. - The
sort()
method modifies the original array. - You can provide a compare function to sort elements as numbers or in a custom order.
19. How to filter elements in an array?
To filter elements in an array in JavaScript, you can use the filter()
method. This method creates a new array with all elements that pass a test specified by a callback function and returns the new array. Here's an example:
const numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5];
const filteredNumbers = numbers.filter((number) => number > 3);
In this code, numbers.filter((number) => number > 3)
filters the elements of the numbers
array and creates a new array filteredNumbers
with elements greater than 3. After this operation, the filteredNumbers
array will be [4, 5, 9, 6, 5, 5]
.
Key Notes
- Use the
filter()
method to filter elements in an array. - The
filter()
method does not modify the original array. - The callback function should return
true
to keep the element orfalse
to filter it out. - The
filter()
method returns a new array with the filtered elements.
20. How to map elements in an array?
To map elements in an array in JavaScript, you can use the map()
method. This method creates a new array with the results of calling a provided function on every element in the array and returns the new array. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const squaredNumbers = numbers.map((number) => number ** 2);
In this code, numbers.map((number) => number ** 2)
maps the elements of the numbers
array to their squared values and creates a new array squaredNumbers
. After this operation, the squaredNumbers
array will be [1, 4, 9, 16, 25]
.
Key Notes
- Use the
map()
method to map elements in an array. - The
map()
method does not modify the original array. - The callback function should return the new value for each element.
21. How to reduce elements in an array?
To reduce elements in an array in JavaScript, you can use the reduce()
method. This method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value and returns the final result. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const sum = numbers.reduce((accumulator, number) => accumulator + number, 0);
In this code, numbers.reduce((accumulator, number) => accumulator + number, 0)
reduces the elements of the numbers
array to their sum and returns the final result. After this operation, the sum
will be 15
.
In each iteration, the callback function takes two arguments: the accumulator
(the accumulated value) and the number
(the current element). The callback function should return the new accumulator value. The second argument of reduce()
is the initial value of the accumulator.
Key Notes
- Use the
reduce()
method to reduce elements in an array. - The
reduce()
method does not modify the original array. - The callback function should return the new accumulator value.
- The
reduce()
method returns the final result of the reduction. - The second argument of
reduce()
is the initial value of the accumulator.
22. How to find the maximum and minimum values in an array?
To find the maximum and minimum values in an array in JavaScript, you can use the Math.max()
and Math.min()
functions with the spread operator ...
. Here are examples of each method:
Using Math.max()
and the spread operator ...
:
const numbers = [1, 2, 3, 4, 5];
const maxNumber = Math.max(...numbers);
Using Math.min()
and the spread operator ...
:
const numbers = [1, 2, 3, 4, 5];
const minNumber = Math.min(...numbers);
In these examples, Math.max(...numbers)
and Math.min(...numbers)
find the maximum and minimum values in the numbers
array, respectively. The ...numbers
spread operator unpacks the elements of the array as arguments to the Math.max()
and Math.min()
functions.
Key Notes
- Use
Math.max()
andMath.min()
with the spread operator...
to find the maximum and minimum values in an array.
23. How to check if all elements in an array pass a test?
To check if all elements in an array pass a test in JavaScript, you can use the every()
method. This method tests whether all elements in the array pass the test implemented by the provided function and returns true
or false
accordingly. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const allGreaterThanZero = numbers.every((number) => number > 0);
In this code, numbers.every((number) => number > 0)
checks if all elements in the numbers
array are greater than 0
. Since all elements are greater than 0
, the output will be true
.
Key Notes
- Use the
every()
method to check if all elements in an array pass a test. - The
every()
method returnstrue
if all elements pass the test,false
otherwise. - The callback function should return
true
orfalse
for each element. - The
every()
method stops once it finds an element that does not pass the test.
24. How to check if any element in an array passes a test?
To check if any element in an array passes a test in JavaScript, you can use the some()
method. This method tests whether at least one element in the array passes the test implemented by the provided function and returns true
or false
accordingly. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const anyGreaterThanFour = numbers.some((number) => number > 4);
In this code, numbers.some((number) => number > 4)
checks if any element in the numbers
array is greater than 4
. Since there are elements greater than 4
, the output will be true
.
Key Notes
- Use the
some()
method to check if any element in an array passes a test. - The
some()
method returnstrue
if any element passes the test,false
otherwise. - The callback function should return
true
orfalse
for each element. - The
some()
method stops once it finds an element that passes the test.
25. How to flatten a nested array?
To flatten a nested array in JavaScript, you can use the flat()
method. This method creates a new array with all sub-array elements concatenated into it recursively up to the specified depth and returns the new array. Here's an example:
const nestedArray = [1, [2, [3, [4, [5]]]]];
const flattenedArray = nestedArray.flat(Infinity);
In this code, nestedArray.flat(Infinity)
flattens the nestedArray
recursively to any depth and creates a new array flattenedArray
. After this operation, the flattenedArray
will be [1, 2, 3, 4, 5]
.
Key Notes
- Use the
flat()
method to flatten a nested array.
26. How to check if two arrays are equal?
To check if two arrays are equal in JavaScript, you can use the every()
method with the length
property. Here's an example:
const array1 = [1, 2, 3];
const array2 = [1, 2, 3];
const arraysAreEqual = array1.length === array2.length && array1.every((value, index) => value === array2[index]);
In this code, array1.length === array2.length
checks if the lengths of array1
and array2
are equal. Then, array1.every((value, index) => value === array2[index])
checks if all elements in array1
are equal to the corresponding elements in array2
. If both conditions are true, the arrays are considered equal.
Key Notes
- Use the
every()
method with thelength
property to check if two arrays are equal.
27. How to check if an array is empty?
To check if an array is empty in JavaScript, you can use the length
property. Here's an example:
const emptyArray = [];
const isArrayEmpty = emptyArray.length === 0;
In this code, emptyArray.length === 0
checks if the emptyArray
is empty. If the length of the array is 0
, then the array is considered empty.
Key Notes
- Use the
length
property to check if an array is empty.
28. How to fill an array with a specific value?
To fill an array with a specific value in JavaScript, you can use the fill()
method. This method fills all the elements of an array from a start index to an end index with a static value and returns the modified array. Here's an example:
const numbers = [1, 2, 3, 4, 5];
numbers.fill(0, 1, 4);
In this code, numbers.fill(0, 1, 4)
fills the elements of the numbers
array from index 1
to index 4
with the value 0
. After this operation, the numbers
array will be [1, 0, 0, 0, 5]
.
Key Notes
- Use the
fill()
method to fill an array with a specific value. - The
fill()
method modifies the original array. - The
fill()
method takes the value to fill, the start index, and the end index as arguments.
29. How to create an array of a specific length?
To create an array of a specific length in JavaScript, you can use the Array()
constructor with the desired length as an argument. Here's an example:
const length = 5;
const newArray = Array(length);
In this code, Array(length)
creates a new array newArray
with the specified length 5
. The elements of the array will be undefined
.
Key Notes
- Use the
Array()
constructor with the desired length as an argument to create an array of a specific length.
30. What are the differences between arrays and objects in JavaScript?
In JavaScript, arrays and objects are both used to store data, but they work a bit differently. Arrays are like lists, where you can store many pieces of data in a particular order. You access the data in arrays using numbers, called indexes. For example, the first item in an array is at index 0
, the second at index 1
, and so on. Objects, on the other hand, are like dictionaries. Instead of using numbers to access data, you use names, which are called keys. Each piece of data in an object is stored with a key-value pair. This means you can access data by specifying its key.
Another difference is that arrays have methods like push()
, pop()
and so on, while objects don't have these methods because they work differently.
Key Notes
- Arrays are like lists, and you access data using numbers (indexes).
- Objects are like dictionaries, and you access data using names (keys).
- Arrays have methods like
push()
,pop()
and so on, while objects don't have these methods.
31. What are the differences between arrays and sets in JavaScript?
In JavaScript, arrays and sets are both used to store collections of data, but they have some key differences.
Firstly, arrays are ordered collections, meaning the items in an array are stored in a specific order and can be accessed using numerical indices. Sets, on the other hand, are unordered collections, so there's no guaranteed order to the items they contain, and you can't access them by index.
Secondly, arrays can contain duplicate values, while sets cannot; each value in a set must be unique.
Thirdly, arrays have built-in methods like push()
, pop()
, and splice()
for manipulating data, while sets have methods like add()
, delete()
, and has()
for similar purposes.
Lastly, arrays are iterable using loops like for...of
or forEach()
, while sets can also be iterated but with the help of the forEach()
method or by using the spread operator (...
).
Key Notes
- Arrays are ordered collections, while sets are unordered collections.
- Arrays can contain duplicate values, while sets cannot.
- Arrays have methods like
push()
,pop()
, andsplice()
for manipulation, while sets haveadd()
,delete()
, andhas()
methods. - Arrays are iterable using loops like
for...of
orforEach()
, while sets can be iterated usingforEach()
or the spread operator (...
).
32. How to remove an element from an array in JavaScript?
To remove an element from an array in JavaScript, you can use the splice()
method. This method changes the contents of an array by removing or replacing existing elements and/or adding new elements in place. Here's an example:
const numbers = [1, 2, 3, 4, 5];
numbers.splice(2, 1);
In this code, numbers.splice(2, 1)
removes one element at index 2
from the numbers
array. After this operation, the numbers
array will be [1, 2, 4, 5]
.
Key Notes
- Use the
splice()
method to remove an element from an array. - The
splice()
method modifies the original array. - The first argument is the start index, and the second argument is the number of elements to remove.
33. How to replace an element in an array in JavaScript?
To replace an element in an array in JavaScript, you can use the splice()
method. This method changes the contents of an array by removing or replacing existing elements and/or adding new elements in place. Here's an example:
const numbers = [1, 2, 3, 4, 5];
numbers.splice(2, 1, 6);
In this code, numbers.splice(2, 1, 6)
replaces one element at index 2
in the numbers
array with the number 6
. After this operation, the numbers
array will be [1, 2, 6, 4, 5]
.
Key Notes
- Use the
splice()
method to replace an element in an array. - The
splice()
method modifies the original array. - The first argument is the start index, the second argument is the number of elements to remove, and the third argument is the new element to add.
34. What is the slice method in arrays?
The slice()
method in JavaScript is used to extract a section of an array and return a new array without modifying the original array. The slice()
method takes two arguments: the start index and the end index (not inclusive). Here's an example:
const numbers = [1, 2, 3, 4, 5];
const slicedArray = numbers.slice(1, 4);
In this code, numbers.slice(1, 4)
extracts elements from index 1
to index 4
(not inclusive) from the numbers
array and creates a new array slicedArray
. After this operation, the slicedArray
will be [2, 3, 4]
.
Key Notes
- Use the
slice()
method to extract a section of an array. - The
slice()
method does not modify the original array. - The first argument is the start index, and the second argument is the end index (not inclusive).
35. What is the find method in arrays?
The find()
method in JavaScript is used to find the first element in an array that satisfies a provided testing function. The find()
method returns the value of the first element in the array that satisfies the provided function, or undefined
if no such element is found. Here's an example:
const numbers = [1, 2, 3, 4, 5];
const foundNumber = numbers.find((number) => number > 3);
In this code, numbers.find((number) => number > 3)
finds the first element in the numbers
array that is greater than 3
. Since 4
is the first element that satisfies the condition, the output will be 4
.
Key Notes
- Use the
find()
method to find the first element in an array that satisfies a condition. - The
find()
method returns the value of the first element that satisfies the condition, orundefined
if no such element is found. - The callback function should return
true
for the element that satisfies the condition. - The
find()
method stops once it finds an element that satisfies the condition.
36. What are the differences between find and filter methods in arrays?
In JavaScript, the find()
and filter()
methods are used to search for elements in an array based on a condition, but they have some key differences:
find():
- The
find()
method returns the first element in the array that satisfies the provided testing function. - The
find()
method returns the value of the first element that satisfies the condition, orundefined
if no such element is found. - The
find()
method stops once it finds an element that satisfies the condition.
- The
filter():
- The
filter()
method creates a new array with all elements that pass the provided testing function. - The
filter()
method returns a new array with all elements that satisfy the condition. - The
filter()
method does not modify the original array.
- The
Key Notes
- Use the
find()
method to find the first element in an array that satisfies a condition. - Use the
filter()
method to create a new array with all elements that satisfy a condition.
37. What is the copyWithin method in arrays?
The copyWithin()
method in JavaScript is used to copy a sequence of elements within an array to the same array at a different position. The copyWithin()
method modifies the array in place and returns the modified array. Here's an example:
const numbers = [1, 2, 3, 4, 5];
numbers.copyWithin(0, 3, 5);
In this code, numbers.copyWithin(0, 3, 5)
copies the elements from index 3
to index 5
(not inclusive) of the numbers
array to the beginning of the array. After this operation, the numbers
array will be [4, 5, 3, 4, 5]
.
Key Notes
- Use the
copyWithin()
method to copy elements within an array. - The
copyWithin()
method modifies the original array. - The first argument is the target index, the second argument is the start index, and the third argument is the end index (not inclusive).