loop through mons

This commit is contained in:
Jeff Colombo 2019-01-03 23:06:08 -05:00
parent c3bd7b1294
commit d20b76299f

View File

@ -1,3 +1,5 @@
import * as Pokemon from 'pokemongo-json-pokedex/output/pokemon.json';
console.log(Pokemon[0]);
Pokemon.forEach((mon) => {
console.log(mon.name);
});