Format fetch

fetch('url')
    .then(res => res.json())
    .then(data => console.log(data));
Ariful Islam Adil(Code Lover)