Array:An array is a special data type in JavaScript used to store multiple values of the same type or of different types under a single name.Example: const myFavFruits = [“Mango”, “Banana”, “Pomegranate”]; console.log(myFavFruits); In this example...