Javascript字符串转数组对象
时间: 2023-11-07 20:01:44 浏览: 116
有两种常见的方法可以将JavaScript字符串转换为数组对象。
方法一:使用split()方法
可以使用split()方法将字符串拆分为字符数组。该方法接受一个分隔符作为参数,将字符串分割成多个子字符串,并将其存储在一个数组中。
例如:
const str = "hello world";
const arr = str.split("");
console.log(arr); // ["h", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d"]
方法二:使用Array.from()方法
可以使用Array.from()方法将类数组对象或可迭代对象转换为数组。在这种情况下,我们可以将字符串视为类数组对象,并将其转换为数组。
例如:
const str = "hello world";
const arr = Array.from(str);
console.log(arr); // ["h", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d"]
阅读全文