Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/03/2013, 18:19
doylelives
 
Fecha de Ingreso: junio-2008
Ubicación: Capital Federal xD
Mensajes: 1.208
Antigüedad: 16 años, 4 meses
Puntos: 35
Reescribir un metodo

El problema que tengo es simple, no puedo reescribir un metodo por fuera de su definicion.
Código Javascript:
Ver original
  1. function employee(name,jobtitle,born){
  2.     this.name=name;
  3.     this.jobtitle=jobtitle;
  4.     this.born=born;
  5.     this.callme = function(){
  6.         return 'original';
  7.     }
  8. }
  9.  
  10. employee.prototype.callme= function(){
  11.     return 'alternativo';
  12. }
  13. var fred=new employee("Fred Flintstone","Caveman",1970);
  14.  
  15. fred.callme()
Siempre retorna 'original'
__________________
I am Doyle please insert code.