GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Sunday, January 30, 2011

A Kind Of Inheritance

<script>

function Holla() {}
Holla.greeting = Holla.prototype.greeting(msg){
    alert(msg);
};

var me = new Holla();
me.greeting('Good Morning!');

</script>

Share/Bookmark

No comments:

Post a Comment