This example creates an object, freezes it, and then creates a new object from the frozen object.
If the second object tries to change the test property, it can't. It remains frozen with the
first object's value of 10.
//Create an object and freeze it
var first = {
test: 10
};
Object.freeze(first);
//Create a second object from the first one and
//try and change the new test property (you can't)
var second = Object.create(first);
second.test = 20;
console.log(second.test); //10
Here are my questions:
Is second.test
a new property on a new object, or is it just a reference to the property in the frozen first object?
Is it possible to use the frozen first.test
as a default value, but let second.test
overwrite it if it needs to?
My reason for asking is because I want to make an immutable a base object as a template with default values, and then use it to make new objects that I can customize. What's the best approach for this?
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…