$('div.list').append(json.response.items.map(function(n) {
return n.text;
}).join(''));
json.response.items.forEach(item => {
switch (item.type) {
case 1:
$('div.list').append(item.text);
break;
case 2:
$('div.list2').append(item.text);
break;
}
});
json.response.items.map(function(n) {
switch (n.type) {
case 1:
$('div.list').append(n.text);
break;
case 2:
$('div.list2').append(n.text);
break;
}
}).join('');