codice:
function ret(){
return {a:"ciao",b:"bye"}
}
alert(ret().a+', '+ret().b);
ciao