Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: getify/You-Dont-Know-JS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7916ced5e3e6b3b6f9ceab0f2c103d3577dcaadb
Choose a base ref
..
head repository: getify/You-Dont-Know-JS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 57e740a965118a71fa9d0ce4ccad75bb7a8ad966
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 objects-classes/ch2.md
2 changes: 1 addition & 1 deletion objects-classes/ch2.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ These characteristics that define the underlying behavior of objects are collect

## Property Descriptors

Each property on an object is internally described by what's known as a "property descriptor". This is, itself, an object with several properties on it, dictating how the outer property behaves on the object in question.
Each property on an object is internally described by what's known as a "property descriptor". This is, itself, an object (a "metaobject") with several properties (aka "attributes") on it, dictating how the target property behaves.

We can retrieve a property descriptor for any existing property using `Object.getOwnPropertyDescriptor(..)` (ES5):