Node.js examples for String:String Value
Split string by comma and white space
String.prototype.splitByComma = function splitByComma() { return this.trim().split(/\s*,\s*/gi); }; String.prototype.splitByWhiteSpace = function splitByWhiteSpace() { return this.trim().split(/\s+/gi); };