THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

JavaScript Array toString() Method

JavaScript Array Reference JavaScript Array Reference

Example

Convert an array to a string:

var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.toString();

The result of fruits will be:

Banana,Orange,Apple,Mango
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: 1.1

JavaScript Array Reference JavaScript Array Reference