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

Return to Question

Fixed obvious typos, but left the core error in place
Source Link
Lightness Races in Orbit
  • 386.9k
  • 77
  • 672
  • 1.1k

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

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

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

Source Link
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

lang-js

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