JavaScript : All About Arrays
An array is a special variable, which can hold more than one value and of various data types, unlike the majority of other languages which can hold only similar types of values.
const array = ['Ariana', 30.5, false, 'Pete'];
They are probably the mo...
tanishka.hashnode.dev6 min read