get random entry
This commit is contained in:
parent
dfe49d6021
commit
2749a3aa44
1 changed files with 5 additions and 2 deletions
|
@ -6,8 +6,11 @@ function load_random_site() {
|
||||||
fetch(webring_all_url)
|
fetch(webring_all_url)
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
.then((obj) => {
|
.then((obj) => {
|
||||||
const urls = obj;
|
const entries = obj;
|
||||||
console.log(urls);
|
console.log(entries);
|
||||||
|
|
||||||
|
const entry = entries[Math.floor(Math.random() * entries.length)];
|
||||||
|
console.log(entry);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue