var a="hi;there;my;friend;"
document.write(a.split(';'))
/*result is :
["hi","there","my","friend",""]
*/
Add a comment
|
var a="hi;there;my;friend;"
document.write(a.split(';'))
/*result is :
["hi","there","my","friend",""]
*/