-
Notifications
You must be signed in to change notification settings - Fork 763
/
book.js
39 lines (35 loc) · 1.29 KB
/
book.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const books = [
{
title: "To Kill a Mockingbird",
author: "Harper Lee",
genre: "Fiction",
description: "A novel about racial injustice in the Deep South."
},
{
title: "1984",
author: "George Orwell",
genre: "Dystopian",
description: "A totalitarian regime uses surveillance to control its citizens."
},
{
title: "The Great Gatsby",
author: "F. Scott Fitzgerald",
genre: "Classic",
description: "A story of love, wealth, and social change in the 1920s."
},
{
title: "The Catcher in the Rye",
author: "J.D. Salinger",
genre: "Fiction",
description: "A young man struggles with the pressures of adulthood."
}
];
document.getElementById("recommend-btn").addEventListener("click", function() {
const randomIndex = Math.floor(Math.random() * books.length);
const book = books[randomIndex];
document.getElementById("book-title").textContent = book.title;
document.getElementById("book-author").textContent = `Author: ${book.author}`;
document.getElementById("book-genre").textContent = `Genre: ${book.genre}`;
document.getElementById("book-description").textContent = book.description;
document.getElementById("book-info").style.display = "block";
});