JavaScript Array toString() Method
Example
Convert an array to a string:
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.toString();
Try it Yourself »
Definition and Usage
The toString() method converts an array into a String and returns the result.
Note: The returned string will separate the elements in the array with commas.
Browser Support
The numbers in the table specify the first browser version that fully supports the method.
| Method | |||||
|---|---|---|---|---|---|
| toString() | Yes | Yes | Yes | Yes | Yes |
Syntax
array.toString()
Parameters
| None |
Technical Details
| Return Value: | A String, representing the values of the array, separated by a comma |
|---|---|
| JavaScript Version: | ECMAScript 1 |
❮ JavaScript Array Reference

