// declaring an array that contains objects as items
let shows = [
{ name: "Breaking Bad", genre: "Drama", network: "AMC" },
{ name: "Game of Thrones", genre: "Fantasy", network: "HBO" },
{ name: "Silicon Valley", genre: "Comedy", network: "HBO" },
{ name: "Narcos", genre: "Drama", network: "Netflix" },
{ name: "Vikings", genre: "Action", network: "History Channel" },
{ name: "Power", genre: "Drama", network: "Starz" },
];
shows
that contains a collection of objects that represents some TV showsThis example uses html tables. Documentation for tables can be found here