which of following function of string object splits a string object into an array of strings by seprating string into substrings code example
Example: javascript explode
//split into array of strings.
var str = "Well, how, are , we , doing, today";
var res = str.split(",");