Skip to content

Instantly share code, notes, and snippets.

@qoelet
Created August 10, 2010 06:18
Show Gist options
  • Save qoelet/516788 to your computer and use it in GitHub Desktop.
Save qoelet/516788 to your computer and use it in GitHub Desktop.
var Student = {
chat: function() {
return "hello i'm " + this.name + " from " + this.sclass + " and my teacher is " + this.form_teacher + ".";
}
}
var kenny = Object.create(Student);
kenny.name = "kenny";
kenny.sclass = "4B";
kenny.form_teacher = "Mr Sim";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment