JSFiddle - React, Tailwind, and code Playground
by akang2
JavaScript
//Act 7.4 Looping Objects
var books = [
{ title: "Basic Javascript", author: "Rauschmayer" },
{ title: "JS in 10 Minutes", author: "Tipping" },
{ title: "Javascript for Cats", author: "Ogden" },
{ title: "jQuery Fundamentals", author: "Murphey" }
];
for(i = 0; i < books.length; i++){
console.log(books[i].title);
}