const axios = require('axios'); axios.get('http://localhost:3000/dolgozok') .then(resp => { dolgozok = resp.data; dolgozok.forEach(dolgozo => { console.log(`${dolgozo.fullname}`); }); }) .catch(error => { console.log(error); });