List of utility methods to do String Search
String.prototype.search = function(c){ console.log(this.length); for(var i = 0; i < this.length; i++){ console.log(this[i]); if(this[i] == c){ return true return false ...