SQL PHP HTML ASP JavaScript articles and free scripts to download
 

String reversal using charat and length property

We can reverse a string by using charat and length property of string functions in JavaScript. By using length property we will find out the total length of the string and then we will use one for loop we will print one by one character from last point using charat function.

Here is the code

<script type="text/javascript">

var my_str="Welcome to www.plus2net.com"

var i=my_str.length;
i=i-1;

for (var x = i; x >=0; x--)
{
document.write(my_str.charAt(x));

}

</script>




Jim25-04-2010
document.write(my_str.split('').reverse().join(''));
david bandel26-04-2010
note. the reason it's best to use str.charAt(x) rather than str[x] is that internet explorer doesn't support accessing characters of a string with array notation.
Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked


Join Our Email List
Email:  
For Email Newsletters you can trust
String Functions