es6字符串转为数组对象
时间: 2023-04-09 17:04:56 浏览: 359
goukuang#all#06-ES6:字符串、数组、对象的扩展1
可以使用split()方法将字符串转换为数组对象,例如:
const str = "hello world";
const arr = str.split("");
console.log(arr); // ["h", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d"]
这里使用split("")将字符串按字符分割成数组对象。
阅读全文