In javascript,array methods are built in the functions that help you add,remove,or manipulate elements in the array.


1. Array length


The length is property that tells you how many elements are in an array.


EXAMPLE:




Inside the array have a 4 elements.So the size of length is 4.


OUTPUT:
4

2. Array toString()


The toString() array...