Hello,
The line below is OK
document.write( "<td ID='fred' >" + this.lhs_0[1] + "</td>");
but how do I write the more general version where the 0 is
situation_numbe r and the 1 is count - ie 2 variables?
ie I know the following is wrong!
document.write( "<td ID='fred' >" + "this.lhs_" + situation_numbe r +
"[" + count +"1" + "</td>");
How should it be written?
Thanks
Geoff
The line below is OK
document.write( "<td ID='fred' >" + this.lhs_0[1] + "</td>");
but how do I write the more general version where the 0 is
situation_numbe r and the 1 is count - ie 2 variables?
ie I know the following is wrong!
document.write( "<td ID='fred' >" + "this.lhs_" + situation_numbe r +
"[" + count +"1" + "</td>");
How should it be written?
Thanks
Geoff
Comment