There are some important array methods in JavaScript some of them are as follows:
toString() - Converts an array to a string of comma-separated values
join() - joins all the array elements using a separator
pop() - removes the last element from the array
push() - Adds new elements at the end of the array
shift() - Removes first element and returns it
unshift() - Adds elements to the beginning. Returns new array length
delete - Array elements can be deleted using the delete operators
concat() - Used to join array to the given array