Storing elements of different types:
In JavaScript, arrays can contain different types of data types such as numbers, objects, strings, or boolean
let arr = [1, "3", "hi", true, null]
Array methods :
unlike String, Array is mutable. we can modify th...