Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
String.prototype.lTrim = function() { return this.replace(/^\s+/,""); } let s = " javascript c# c++ c python " s = s.lTrim() console.log(s); /* run: javascript c# c++ c python */