const li = document.querySelector('#id-li')
const input = li.querySelector('input')
cosnt response = '<div>Здесь ваш ответ от сервера</div>'
const elem = new DOMParser().parseFromString(response, 'text/html').querySelector('.mySelectorName')
console.log(elem.outerHTML)
const start = 1
const end = 4
// Делаем массив из чисел которые нужно перемножить
const arr = Array(end - start + 1).fill().map((_, i) => start + i)
// Теперь все перемножаем
const result = arr.reduce((a, b) => a * b)
console.log(result) // 24
let firstArr = [
{
text: 'Lorem',
type: 'string'
},
{
text: 'Ipsum',
type: 'string'
},
{
text: 32,
type: 'integer'
},
{
text: 64,
type: 'string'
},
{
text: 128,
type: 'string'
},
]
let secondArr = []
for(let item of firstArr){
secondArr.push(item.text)
}
console.log(secondArr)
let secondArr = firstArr.map(item => item.text)
console.log(secondArr)