Skip to main content
Stack Overflow
  1. About
  2. For Teams

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

javascript get array name

so i have this array:

var utf = Array(
 a: Array('á','à','ã','Á','À','Ã'),
 e: Array('é','ê','É','È'),
 i: Array('í','Í'),
 o: Array('ó','õ','Ó','Õ'),
 u: Array('ú','Ú'),
 c: Array('ç','Ç') 
);

I want to run a for loop like:

for(i = 0; i < utf.length; i++){
 for (j = 0; j < utf[i].length; j++){
 mystring.replace(utf[i][j], <utf[i][arrayname]>);
 }
}

is this possible? how? would you do this in a different way? how?

Thank you very much

Answer*

Draft saved
Draft discarded
Cancel

lang-js

AltStyle によって変換されたページ (->オリジナル) /