()
| 11 | const combatEl = document.getElementById('combat'); |
| 12 | |
| 13 | function url(){ |
| 14 | let randomId = Math.floor(Math.random() * 731) + 1; //random integer b/w 1 and 731 |
| 15 | let api = `https://cdn.jsdelivr.net/gh/akabab/superhero-api@0.3.0/api/id/${randomId}.json`; |
| 16 | getInfo(api); |
| 17 | } |
| 18 | |
| 19 | function getInfo(apiURL){ |
| 20 | fetch(apiURL) |