Using Objects in JavaScript
Arrays are ordered collections of data that we can use to store multiple items. They do have their limitations, however.
const student = ['John', 'Computer Science', 25, 'Doe'];
The array is stored in a variable called student which relates to the c...
james-reed.hashnode.dev3 min read