1)Array length:


The length property returns the length (size) of an array




const fruits = ["Banana", "Orange", "Apple", "Mango"];
let size = fruits.length;






-The length property can also be used to set the length of an array:



const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.length = 2;






2)Array toString()


The...