ES6:字符串转数组

1、字符串转数组

方法一:

使用ES6的数组扩展 。扩展运算符(spread)是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。

[..."abcdefg1234567"]

结果:

方法二:

在es6中,可以使用数组的扩展方法 Array.from() 将字符串转为数组,Array.from方法用于将两类对象转为真正的数组:类似数组的对象(array-like object)和可遍历(iterable)的对象(包括 ES6 新增的数据结构 Set 和 Map)。

Array.from("hello")

结果:

2、数组转字符串

方法一:使用JS中的join()方法,join() 方法用于把数组中的所有元素放入一个字符串。

let array = ['1','2','3','4','5','6','7']
array.join('');

结果:

 

 

本文链接:https://my.lmcjl.com/post/10893.html

展开阅读全文

4 评论

留下您的评论.