Array It is the collection of elements of different data types. It is of dynamic size. we can access the elements of array by indexes. The index start from 0 to size_of_array - 1. Example: let arr=[1,2,3,"Hello","Hai"] Output: [1,2,3,'Hello','H...