How to convert comma separated string into numeric array in javascript

后端 未结 9 1756
粉色の甜心
粉色の甜心 2021-02-05 02:06

I have a one-dimensional array of integer in JavaScript that I\'d like to add data from comma separated string, Is there a simple way to do this?

e.g : var strVale

9条回答
  •  执笔经年
    2021-02-05 03:04

    just you need to use couple of methods for this, that's it!

    var strVale = "130,235,342,124";
    var resultArray = strVale.split(',').map(function(strVale){return Number(strVale);});
    

    the output will be the array of numbers.

提交回复
热议问题