In the javascript has a similar function of PHP explode

For example:


var str="How are you doing today?";//Character string
var n=str.split(" ");//String with a blank cut
//n is array!
alert(n);//will show    How,are,you,doing,today?