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

Return to Revisions

1 of 2
Pastilhas
  • 11.7k
  • 26
  • 72
  • 130

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

Pastilhas
  • 11.7k
  • 26
  • 72
  • 130
lang-js

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