Skip to content
Advertisement

Using a variable in place of an array

I have a number of arrays I’m using for my first Chrome extension. I want to use a different array for my extension depending on what a value is in a specific variable (locationVal), which is a number between 1-4. Here is the function that decides that:

JavaScript

The firstList, secondList, etc. are my arrays, which are declared as:

JavaScript

The main thing I’m wondering, is how will the arrayToUse variable be used as an array name in a settings such as this:

JavaScript

and

JavaScript

I think that is being used as a string as-is and it is causing an issue there. If I put in one of my arrays directly, the program works fine.

Advertisement

Answer

I’d recommend using a map to store references to your arrays. This way you can access those by a string identifier, which can be the same as the variable name of a particular array. This string can then be saved to the localStorage.

Something like:

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