不会改变原数组 <script> var arr = ["html","css","JavaScrip"]; var b = arr.join("/"); // 以/分割链接数组的元素 console.log(b) </script>