欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

举例讲解JavaScript中将数组元素转换为字符串的方法_基础知识

程序员文章站 2022-04-22 17:06:28
...
首先来看一下从一个数组中选择元素的方法slice():
源代码:

Click the button to extract the second and the third elements from the array.

​ ​

测试结果:

Orange,Lemon

我们可以用数组的元素组成字符串,相关的join()方法使用例子:

源代码:


Click the button to join the array elements into a string.

​ ​

测试结果:

Banana,Orange,Apple,Mango

直接转换数组到字符串则可以用toString()方法:
源代码:


点击按钮将数组转为字符串并返回。

​ ​

测试结果:

Banana,Orange,Apple,Mango