Skip to content
Advertisement

Filling a Single or Double Javascript Array in a Single Function

There is something about JavaScript arrays I appear not to know as I am getting results I do not understand. I come from a C++ background.

Why is the Double-Array result [Empty String] when I believe it should be displaying the contents of a double-array. The Single array result is how I expect it should be.

I thought the results should be

JavaScript

But they are

JavaScript

Why?

JavaScript
JavaScript

Advertisement

Answer

I can explain the “Why”, it is quite simple. Look at just these few lines

JavaScript

When isDoubleArray is false (ie, when only passing 1 argument), you’re setting arrUse to a reference to this._arr. Subsequent calls to arrUse[x] will update that referenced array.

However, when isDoubleArray is true, you are recreating the array. Subsequent calls to arrUse[x] no longer update the reference but the newly created array

I think what you’re trying to achieve is this:

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