例如:
const arr = ['ab', 'cdef', 'ghi']
const split = [['a', 'b'], ['c', 'd', 'e', 'f'], ['g', 'h', 'i']]
我该如何用Javascript做到这一点?我有点挣扎。如果有人可以提供帮助,我将不胜感激。
答案 0 :(得分:1)
您可以使用.map()
和Spread Syntax
:
const data = ['ab', 'cdef', 'ghi'];
const result = data.map(s => [...s]);
console.log(result);
.as-console-wrapper { max-height: 100% !important; top: 0; }
答案 1 :(得分:0)
映射项目,并使用空字符串将其拆分。
tools.keys
答案 2 :(得分:0)
只需使用Array.map()
const arr = ['ab', 'cdef', 'ghi']
const result = arr.map((a)=>a.split(""));
console.log(result);