Node.js examples for String:String Start
Add method to String to check starts with
String.prototype.startsWith = function(str) {return this.substring(0,str.length) == str;}