Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const inserParam = { type: 'append', id: 'container' }; const spotOfAdding = doc.querySelector(`#${inserParam.id}`); spotOfAdding.ВОТ ЗДЕСЬ ДОЛЖИН БЫТЬ СПОСОБ ВСТАВКИ.('ul');
insertionTypes = { 'append': function( spot ) { ul = document.createElement( 'ul' ); spot.appendChild( ul ); }, 'prepend': function( spot ) { ul = document.createElement( 'ul' ); spot.insertBefore( spot.firstChild, ul ); } } insertionTypes[ insertParam.type ] ( spotOfAdding );