Skip to content

Instantly share code, notes, and snippets.

@hoanganh25991
Created January 14, 2016 02:59
Show Gist options
  • Save hoanganh25991/efdc272b0fac23bf5ff7 to your computer and use it in GitHub Desktop.
Save hoanganh25991/efdc272b0fac23bf5ff7 to your computer and use it in GitHub Desktop.
prototype chain in javascript
var storage = {"name":"hoang-anh", "rong":"10m", "dai":"20m"};
if(typeof Object.create != 'function'){
Object.create = function(object){
var f = function(){};
f.prototype = object;
return new f();
};
}
var storage_1 = Object.create(storage);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment