我想从字符串创建一个数组
这就是字符串的格式
const someString = "a,b,c,d";
我需要一个像这样的数组
const someArray = ["a", "b", "c", "d"];
答案 0 :(得分:1)
使用String.prototype.split()
const someString = "a,b,c,d";
const someArray = someString.split(',');
MDN:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split
答案 1 :(得分:1)
您可以简单地分割字符串:
const arr = "a,b,c,d".split(",")