Node.js examples for String:String Start
Match String start
String.prototype.startsWith = function(str) { return (this.match("^"+str)==str) }