String.prototype.countChars = function(c) { var cpt = 0;//from w w w . ja v a 2s . com for(var i=0;i<this.length;i++) { if(this.charAt(i)==c) cpt++; } return cpt; } var monTexte = "Je s uis un texte"; console.log(monTexte.countChars(' ')); var monTexte = "fdsqfqdf"; console.log(monTexte.countChars('f'));