codice:
function star(num){
	var t = "";while(num--)t+="*";return t;
}
num = 2;//numero estratto dal db
trace("ciao" + star(num))