|
|
|
|
|
by Cardinal
5419 days ago
|
|
I have a Java background and I don't really use JavaScript, but I'd like to understand something : var man = fromPrototype(person, {
sex: "male"
}); After this code runs, we have a reference to a function (man) inside which we declare an object (newObject) for which we define the new property (sex). That means we can now call newObject.sex But later he's calling that property on the function itself :
jeremy.sex How is this possible? |
|