Value, writable, enumerable, configurable là các thuộc tính của các thuộc tính

const obj = {
    purposeOfLife: 42,
}
Object.getOwnPropertyDescriptor(obj, 'purposeOfLife')

Kết quả:
{
    value: 42,
    writable: true,
    enumerable: true,
    configurable: true
}

Enumerability and ownership of properties - JavaScript | MDN
Nguồn::