api fetching data but not displayed in result code example
Example: fetch('https://www.example.com/index.html') .then(res => res.text()) .then(html => console.log(html));
fetch('https://www.gs1us.org')
.then(res => res.text())
.then(html => console.log(html));