Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/03/2013, 08:18
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 16 años, 5 meses
Puntos: 1012
Respuesta: Reescribir un metodo

yo haría algo mas simple. pasarle una variable
Cita:
function employee(name,jobtitle,born){
this.name=name;
this.jobtitle=jobtitle;
this.born=born;
this.callme = function(op){
this.opcion = op || 'original';
return this.opcion;
}
}

var fred=new employee("Fred Flintstone","Caveman",1970);

fred.callme('alternativo')
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}