📌  相关文章
📜  在javascript代码示例中将字符串转换为数组

📅  最后修改于: 2022-03-11 15:01:10.336000             🧑  作者: Mango

代码示例3
// Designed by shola for shola

str = 'How are you doing today?';
console.log(str.split(" "));

//try console.log(str.split(""));  with no space in the split function
//try console.log(str.split(","));  with a comma in the split function