y el codigo que tengo hasta el momento es :
Código:
os agradeceria si me diesen una mano con esta duda <html> <head> </head> <body> <script language="JavaScript"> Object.prototype.implementa=function(a){ try{ if(typeof(a)!='undefined'){ document.write('es un metodo del objeto '+this; }else{ document.write('no es un metodo del objeto '+this; } }catch(exception){ alert(exception); } } objeto=function { objeto2=function{ } } a=new Objeto(); a.implementa('objeto.objeto2'); </script> </body> </html>