1fetch("https://pokedex.mimo.dev/api/move-battle-style") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1[2 {3 "name": "attack",4 "url": "https://pokedex.mimo.dev/api/move-battle-style/1/",5 "id": "1"6 },7 {8 "name": "defense",9 "url": "https://pokedex.mimo.dev/api/move-battle-style/2/",10 "id": "2"11 },12 {13 "name": "support",14 "url": "https://pokedex.mimo.dev/api/move-battle-style/3/",15 "id": "3"16 }17]