ajax('https://api.github.com/repos/lospec/pixel-editor/contributors', response => { if (Array.isArray(response)) { var html = ''; response.forEach(c => { //skip lospec if (c.login == 'lospec') return; //add to html html+=' '+c.login+'' }); document.querySelector('.contributors').innerHTML = html; } });