<html>
<head>
<title>Array Type Join Example</title>
<script type="text/javascript">
var colors = ["red", "green", "blue"];
alert(colors.join(",")); //red,green,blue
alert(colors.join("||")); //red||green||blue
</script>
</head>
<body>
</body>
</html>