A simple website allows the user to get a multiple pokemon by id.
The objective of the project is to practice using get requests and apply separation of concerns.
- JavaScript
- HTML5
- CSS3
- VSC code
- clone the repo.
npm install
if (validIds.length === 0) {
errorText.innerText = 'Please enter a valid Pokemon ID';
dom.container.innerHTML = '';
dom.container.append(errorText);
return;
}Project is: Done
