ES6语法中有哪些简单的字符串转数组方法

2024年06月24日 建站教程

在前端开发中,有时我们可能需要将一个字符串分成单个字符或更长的子串,以便于处理或进一步操作。这就需要使用字符串到数组的方法。下面给大家简单介绍一ES6语法中有哪些简单的字符串转数组方法!

1、[…string]语法的用法

let str = "Hello World";
let arr = [...str];
console.log(arr);
//(11) ['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']

2、Array.from()方法的用法

let str = "Hello World";
let arr = Array.from(str);
console.log(arr);
//(11) ['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd']

本文链接:http://so.lmcjl.com/news/7173/

展开阅读全文
相关内容