Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with a javascript array: "arrFinal[i] is undefined"

In my script arrFinal is dynamically generated

function fillTextareas () {
var arrFinal = [];
arrFinal[0] = [];

....
....
// Then some code that define the content of arrFinal, the length of arrFinal ( tailleArrFinal, tailleArrSubFinal)
....
....


for(i=0;i<=tailleArrFinal;i++){
        for(j=0;j<tailleArrSubFinal;j++) {
            $("form textarea#t" + i + "_" + j).val(arrFinal[i][j]);
        }
    }
}

When the function is called, a dump show me that the array arrFinal is correctly fill and the script works but i have an alert "arrFinal[i] is undefined". How can i do that without alert ? Thanks !!

share|improve this question
Where is that alert you are calling... ? – Talha Ahmed Khan Jul 4 '11 at 12:28

2 Answers

up vote 3 down vote accepted

It looks like an off-by-one error in the outer loop.

It should be i < tailleArrFinal, not <=.

share|improve this answer

By looking at your loop I can see at least 2 errors: you miss "var" and ".length" (you have to test for array length!)

try to replace:

for(i=0;i<=tailleArrFinal;i++){
        for(j=0;j<tailleArrSubFinal;j++) {
            $("form textarea#t" + i + "_" + j).val(arrFinal[i][j]);
        }
    }
}

with:

for(var i=0;i<tailleArrFinal.length;i++){
        for(var j=0; j<tailleArrSubFinal.length; j++) {
            $("form textarea#t" + i + "_" + j).val(arrFinal[i][j]);
        }
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.