Jquery - how to explode arrays value

javascript, jquery

Solution

Use `split()`:

var items = value.split('-');

Problem

Is it possible to explode datas in array according to a charachter? ``` .each(myArr, function(key, value) { }); ``` i take array like that value is the values of array . Can explode value with "-" ?

Original source

Related problems