Re: Підключення node js
чомусь не працює через live server знов
в консолі нічого немає
window.onload = () => {
let url = 'https://jsonplaceholder.typicode.com/users'
fetch(url)
.then((res) => { return res.json() })
.then((res) => {
let index = getRandom(0, 9);
return res[index]
})
.then((person) => {
fetch('https://jsonplaceholder.typicode.com/posts')
.then((res) => { return res.json(); })
})
.then((posts) => {
let finalUser = {};
finalUser.name = person.name;
finalUser.posts = posts.filter(post => { return person.id = post.userId })
})
console.log(finalUser);
function getRandom(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
}