Tell us what’s happening:
compiler show this error again and again .kindly guide me
Your code so far
/* file: script.js */
const authorContainer = document.getElementById('author-container');
const loadMoreBtn = document.getElementById('load-more-btn');
// User Editable Region
fetch("https://cdn.freecodecamp.org/curriculum/news-author-page/authors.json")
.then((res) => {
console.log(res);
});
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36
Challenge Information:
Learn Fetch and Promises by Building an fCC Authors Page - Step 3