.this() and .catch()
fetch("https://pokeapi.co/api/v2/pokemon/pikachu");// to fetch third party API's
.then((data)=>console.log(data));
.catch((error)=>console.error(error));
so in vs code .then() or .catch() methods says . is unexpected token
4 Replies