| |
|
Returning a string by adding all elements of an array by toString |
Javascript toString object can connect all elements of an array and return as a string. This way we an use toString to display all elements of the array. This object toString uses commas as separators while adding all the elements.
If you want to specify your own delimiter other than commas then you can use array join function
Let us see this example on how to use toString function.
<script type="text/javascript">
var scripts = new Array();
scripts[0] = "PHP";
scripts[1] = "ASP";
scripts[2] = "JavaScript";
scripts[3] = "HTML";
document.write(scripts.toString());
</script>
.
The output of the above script is here
PHP,ASP,JavaScript,HTML
| |
| Subscribe |
|
Submit your email address and receive
article and product notifications. Your email is safe with us.
|
|
|
|
| JavaScript Tutorials |
| Array Functions |
|
|
|
| Popular Tutorials |
|
| Drop down list |
| Timer function |
| JavaScript Tutorials |
|
| String |
| Array |
| Date & Time |
| Form Validation |
| Event Handling |
| Math Functions |
| Loops & structure |
| JavaScript Forum |
| Subscribe |
|
Submit your email address and receive
article and product notifications. Your email is safe with us.
|
|
|
|