I have a function where I assign values in this, because it will be instantiated
function Teste(){
this.valor='Valor no this';
return "Valor no return";
}
Instantiate it
var t = new Teste();
But now, how do I get the string "Valor no return"
?
console.log(t.valor);
console.log(t.return);//?
Code running here: link