Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

118
Vistas
Probleme with empty items in 2d array

I'm trying to build 2d array with JS.

In a theater there is 26 lines, each one include 100 seats :

function theaterSeats() {
  let seats= new Array(26);
  for (let i = 1; i <= 26; i++){
    seats[i] = new Array(100);
    for (let j = 1; j <= 100; j++) {
      seats[i][j] = `${i}-${j}`
    }
  }
  return seats;
}

console.log(theaterSeats());

The result is not far from what I expected, except that there is an empty item in each array... I don't understand why. Some help please ?

[
  <1 empty item>,
  [
    <1 empty item>, '1-1',  '1-2',  '1-3',
    '1-4',          '1-5',  '1-6',  '1-7',
    '1-8',          '1-9',  '1-10', '1-11'  

(...................)

Thanks in advance for your answer ;).

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

JavaScript arrays' index start from 0 that's why your first item is always empty because you have skipped index 0 and started your iteration from index 1. You need to fill your array starting from index 0!

The correct version of your code could be:

function theaterSeats() {
  let seats= new Array(26);
  for (let i = 0; i < 26; i++){
    seats[i] = new Array(100);
    for (let j = 0; j < 100; j++) {
      seats[i][j] = `${i + 1}-${j + 1}`
    }
  }
  return seats;
}

about 4 years ago · Juan Pablo Isaza Denunciar

0

Simple map solution

const theaterSeats = [...Array(26)].map((_, i) => {
  return [...Array(100)].map((_, j) => `${i+1}-${j+1}`)
})

console.log(theaterSeats)

about 4 years ago · Juan Pablo Isaza Denunciar

0

It's just because you're using 1 as the 1st index instead of 0, array index starts in 0, something like:

An array of 7 elements have those indexes: 0,1,2,3,4,5,6. So when setting a value to a position you'll begin like: array[0] = 'some value', array[1] = 'some other value' ...

Here in your for loop you'll need to begin with i and j = 0. So it'll look like

function theaterSeats() {
  let seats= new Array(26);
  for (let i = 0; i <= 26; i++){
    seats[i] = new Array(100);
    for (let j = 0; j <= 100; j++) {
      seats[i][j] = `${i+1}-${j+1}`
    }
  }
  return seats;
}

console.log(theaterSeats());
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda