Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 14:04
Show Gist options
  • Save seogi1004/e64d1c4b2c83a89507abd5ea8efd1c6d to your computer and use it in GitHub Desktop.
Save seogi1004/e64d1c4b2c83a89507abd5ea8efd1c6d to your computer and use it in GitHub Desktop.
var Parent = function() {
this.print= function() {
alert("My name is " + this.getName());
};
};
var Children = function(name) {
this.name = name;
this.getName = function() {
return this.name;
};
};
Children.prototype = new Parent;
var children = new Children('Moon-Hak-I');
children.print();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment