Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

117
Views
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 answers
Answer question

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 Report

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!