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