сделать чтобы first оставался нетронутым?
Let second = {...first}
const second = JSON.parse(JSON.strigify(first[0])) second.x = 0
const first = [{ x: 15 }] const second = first.map(el => ({ ...el, x: 0 })) console.log(first) // [{ x: 15 }] console.log(second) // [{ x: 0 }]
Обсуждают сегодня