`<html>html
<script> var obj={ a:function(){ alert("first a") obj.aftera(); }, aftera:function(){ alert("aftera"); } } obj.aftera=function(){ alert("repeat aftera"); }; obj.a(); </script> htm
</html>` ip