var makeElement = function (tag, tagClass, text){
var element=document.createElement(tag);
element.classList.add(tagClass);
if (text){
element.textContent=text;
}
return element;
}
var renderCards=function(array){
var list = document.querySelector('.goods');
for (var i=0; i<array.length; i++) {
var item = document.createElement('li');
item.classList.add('good');
list.appendChild(item);
var title = makeElement('h2', 'good__description', array[i].text)
item.appendChild(title);
var picture = makeElement('img', 'good__image');
picture.src = array[i].imgUrl;
picture.alt = array[i].text;
item.appendChild(picture);
var price = makeElement('p', 'good__price', array[i].price+'₽/кг')
item.appendChild(price);
item.classList.add(array[i].isHit ? 'good--hit' : null);
item.classList.add(array[i].inStock ? 'good--available' : 'good--unavailable');
if (array[i].isHit) {
var special = makeElement('p', 'good__special-offer', array[i].specialOffer)
item.appendChild(special);
}
}
}
Картинки совпадают, задание не принимает.