JavaScript Array join() Method
Example
Convert the elements of an array into a string:
var fruits = ["Banana", "Orange", "Apple", "Mango"];
var energy = fruits.join();
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The join()
method returns the array as a
string.
The elements will be separated by a specified separator. The default separator is comma (,).
Note: this method will not change the original array.
Browser Support
The numbers in the table specify the first browser version that fully supports the method.
Method | |||||
---|---|---|---|---|---|
join() | 1.0 | 5.5 | 1.0 | Yes | Yes |
Syntax
array.join(separator)
Parameter Values
Parameter | Description |
---|---|
separator | Optional. The separator to be used. If omitted, the elements are separated with a comma |
Technical Details
Return Value: | A String, representing the array values, separated by the specified separator |
---|---|
JavaScript Version: | ECMAScript 1 |
More Examples
Example
Try using a different separator:
var fruits = ["Banana", "Orange", "Apple", "Mango"];
var energy = fruits.join(" and ");
Try it Yourself »
Related Pages
JavaScript Tutorial: JavaScript Arrays
JavaScript Tutorial: JavaScript Array Methods
❮ JavaScript Array Reference