Javascript Convert Array into Comma Separated String Example
When i was new to javascript and array. i had one task need to convert object array into string with comma separated string in javascript. i thought how we can convert array into string with commas or without commas.
After i search on google i find out way to convert object array to comma separated string two way in javascript. we can do it using toString() and join() function of array property. i added both example so you can understand how it works and you can use it.
Let's see both example and it can help to your project.
Example 1:
<!DOCTYPE html>
<html>
<head>
<title>Javascript - Convert Array into Comma Separated String Example - ItSolutionStuff.com</title>
</head>
<body>
<script type="text/javascript">
var websites = ['itsolutionstuff.com','hdtuto.com','nicesnippets.com'];
document.write(websites.toString());
</script>
</body>
</html>
Output:
itsolutionstuff.com,hdtuto.com,nicesnippets.com
Example 2:
<!DOCTYPE html>
<html>
<head>
<title>Javascript - Convert Array into Comma Separated String Example - ItSolutionStuff.com</title>
</head>
<body>
<script type="text/javascript">
var websites = ['itsolutionstuff.com','hdtuto.com','nicesnippets.com'];
document.write(websites.join('='));
</script>
</body>
</html>
Output:
itsolutionstuff.com=hdtuto.com=nicesnippets.com
I hope it can help you...