Skip to content
Advertisement

JavaScript create two dimensional array

I’m new to JavaScript, I’m trying to solve leetcode question 37. I need to a create a blank two dimensional array, I initially used the method in the comments; however, it doesn’t work correctly, it will change all the value. Then, I used the for loop method to create array and currently it worked correctly. But I still cannot figured out why this will happen, could anyone explain the reason why this will happen, is this because of shallow copy?

JavaScript

Advertisement

Answer

The problem with fill(), at least with object, is that it passes the same object, by reference, to all element of the array. So if you mutate this object, then it will mutate every object of every arrays.

Note that in your case, you are creating a new Array object using it’s constructor ( new Array() ) which makes them objects.

JavaScript

In the previous snippet, you can see that the values of the other rows, from the second one to the end, are reference to the initial row.

To get around that, you can fill you array with empty values and then use the map() to create unique object for each position in the array.

JavaScript

As you can see in the previous snippet, all the rows are now their unique reference.

This is the reason all of your values were changed.

I’ve applied this solution to your code. I wasn’t able to test it, because I wasn’t sure of the initial parameters to pass.

I’ve also used anonymous function here ( function() { return; } ), but I would success using arrow function ( () => {} ) instead, if you are comfortable with them. It’s cleaner.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement