Created
January 14, 2016 02:59
-
-
Save hoanganh25991/efdc272b0fac23bf5ff7 to your computer and use it in GitHub Desktop.
prototype chain in javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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