2023-01-22 10:03:28 -06:00
|
|
|
const disp = document.querySelector(".display");
|
|
|
|
|
2023-04-09 15:02:33 -05:00
|
|
|
fetch("https://cdn.fyrfli.link/FavouriteQuotes.json")
|
2023-01-22 10:03:28 -06:00
|
|
|
.then((response) => {
|
|
|
|
return response.json();
|
|
|
|
})
|
|
|
|
.then((data) => {
|
|
|
|
numQuotes = Object.entries(data).length;
|
|
|
|
num = Math.floor(Math.random() * numQuotes);
|
|
|
|
disp.innerText = data[num].quote + "\n\n" + data[num].author.replace(/"/g, '');
|
|
|
|
})
|