Hello programmer’s Today in this I will show you how to Convert Array into Comma Separated String. When i was new in javascript and also on array. I had one task need to convert a object array into string with comma separated string by using javascript. Now i need thought you how we can convert a array into a string with commas or without commas.
After that when i search it on google i find out few way to convert a object array to comma separated string two way in javascript. We can do it by using toString() and join() function of array property. So 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 - Codingspoint.com</title>
</head>
<body>
<script type="text/javascript">
var websites = ['Codingspoint.com','srs.com','sklo.com'];
document.write(websites.toString());
</script>
</body>
</html>
Output:
Codingspoint.com,srs.com,sklo.com
Read Also : json_encode() is better then @json() in Blade Directive
Example 2:
<!DOCTYPE html> <html> <head> <title>Javascript - Convert Array into Comma Separated String Example - Codingspoint.com</title> </head> <body> <script type="text/javascript"> var websites = ['Codingspoint.com','srs.com','sklo.com']; document.write(websites.join('=')); </script> </body> </html>
Output :
Codingspoint.com,srs.com,sklo.com
Read Also : How Server Side Form Validation work in Laravel 8?
Thanks for reading. i hope it will help you.For more you can follow us on facebook.