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

118
Views
Set two-dimensional array value as property of object javascript

I have the following class: I am trying to set the value of this.grid[0][0] to 0, however when I run the following code I get the output in the console:

this.grid = 0: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
1: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
2: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
3: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
4: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
5: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
6: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
7: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
8: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]
9: (10) [0, 1, 1, 1, 1, 1, 1, 1, 1, 1]

class Pane {
  turnChance = 0.4;
  maxLength = 100;
  gridMultiplier = 20;
  constructor({
    height,
    width,
    p,
    start
  } = {}) {
    this.height = height;
    this.width = width;
    this.start = start;
    this.grid;
    this.initGrid();
  }
  initGrid() {
    this.grid = Array(this.width).fill(Array(this.height).fill(1));
  }
  generateLines() {
    this.grid[0][0] = 0;
  }
}
const pane = new Pane({
  height: 10,
  width: 10,
  start: [0, 0]
});
console.log(pane.grid)
pane.generateLines()
console.log(pane.grid)

Why is this happening, and how can I set this.grid[0][0] solely, without it affecting any other elements in the array?

about 4 years ago · Juan Pablo Isaza
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!