I am pretty new to Javascript
I have been assigned to make a database using objects and organizing them into an array. I need to make sure the user can see all the objects in the array, allow the user to add and remove any objects, and allow the user to search for any objects. So far I have this but I am stumped on how to display the array in a popup box using purely javascript in jsfiddle.
var books = [
book1 = {
bookName: "Keeper of the Lost Cities",
author: "Shannon Messenger",
goodreadsRating: "4.5/5"
},
book2 = {
bookName: "Eragon",
author: "Christopher Paolini",
goodreadsRating: "3.9/5"
},
book3 = {
bookName: "The House of the Scorpion",
author: "Nancy Farmer",
goodreadsRating: "4.1/5"
}
];
let array = books;