Solucio classe text

De wikiserver
Dreceres ràpides: navegació, cerca
function text(){

var text= "cadena de caracters";

this.afegirCaracter=function(caracter)  //mètode agefirCaracter
{
	return text+=""+caracter;
}


this.contarVocals=function()   //mètode contarVocals
{
var cont=0;
var texto=text.split("");
for (var i = texto.length - 1; i >= 0; i--) {
	if(texto[i]=='a' ||texto[i]=='e'|| texto[i]=='i' ||texto[i]=='o' ||texto[i]=='u'){
		cont++;
	}
};

return cont;
}


this.mostrarText=function()   //mètode mostrarText
{
	console.log(text);
}

}//tanquem la classe




var texto= new text();
texto.afegirCaracter("a");
texto.contarVocals();
texto.mostrarText();