fetch('https://picsum.photos/600/300')
.then(res => res.blob())
.then(blob => {
let img = document.createElement('img');
console.log(img);
img.src = URL.createObjectURL(blob);
document.body.appendChild(img)
docuemnt.querySelector('body').appendChild(img);
});