Node.js examples for String:sub string
Is string has a substring
String.prototype.has= function(c) { return this.indexOf(c) >= 0; };