How to write this statement into java script
This code writing in c# now i am implemented in java script
string strTemp=124:1000;3200;12555;
int ind = strTemp.Length - 1;
strTemp = strTemp.Substring(0, ind - 1);
Thanks & Regards,
Brijesh Mandaliya
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Koteswararao MallisettiPosted Oct 22, 2010, 10:02 AM
var strTemp="124:1000;3200;12555";
length is also in javascript
Naveen VermaPosted Oct 23, 2010, 8:41 AM
var Temp="Naveen Verma";
var ind=Temp.length-1;
for(var i=0; i
document.write(Temp[i]);
}