Created
March 3, 2015 20:34
-
-
Save Peege151/2fee7cbcad635daa5374 to your computer and use it in GitHub Desktop.
Object.defineProperties
This file contains hidden or 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 Mammal = function(name) { | |
Object.defineProperties(this, { | |
"name": { | |
value: name | |
}, | |
"offspring": { | |
value: [] | |
} | |
}); | |
} | |
// this doesn't pass the tests... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment