“Establecer elemento en el índice JavaScript Array y crear una nueva matriz” Código de respuesta

JavaScript Push en un índice específico

arr.splice(index, 0, item);
//explanation:
inserts "item" at the specified "index",
deleting 0 other items before it
Dark Dotterel

Establecer elemento en el índice JavaScript Array y crear una nueva matriz

const items = [1, 2, 3, 4, 5]

const insert = (arr, index, newItem) => [
  // part of the array before the specified index
  ...arr.slice(0, index),
  // inserted item
  newItem,
  // part of the array after the specified index
  ...arr.slice(index)
]

const result = insert(items, 1, 10)

console.log(result)
// [1, 10, 2, 3, 4, 5]
Grotesque Gannet

Respuestas similares a “Establecer elemento en el índice JavaScript Array y crear una nueva matriz”

Preguntas similares a “Establecer elemento en el índice JavaScript Array y crear una nueva matriz”

Más respuestas relacionadas con “Establecer elemento en el índice JavaScript Array y crear una nueva matriz” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código