0 david posted how explode string to array in javascript var text = "This is test +++ this second test " i want to explode this string with +++ in js how to do it ? Edit Question
1 Rasi answered Nov 30 '-1 00:00 var rtext = "This is test +++ this second test " console.log(rtext.split("+++")) Edit Answer