How can I convert a comma-separated string to an array?

后端 未结 15 1418
温柔的废话
温柔的废话 2020-11-22 02:37

I have a comma-separated string that I want to convert into an array, so I can loop through it.

Is there anything built-in to do this?

For example, I have this

15条回答
  •  借酒劲吻你
    2020-11-22 03:10

    Shortest

    str.split`,`
    

    var str = "January,February,March,April,May,June,July,August,September,October,November,December";
    
    let arr = str.split`,`;
    
    console.log(arr);

提交回复
热议问题