let arr = ['a', 'b', 'c'];
for (let key in arr) {
console.log(key);
}
// => 0
// => 1
// => 2
Object.getOwnPropertyDescriptor(arr, 'length')
// => {value: 3, writable: true, enumerable: false, configurable: false}
arr.propertyIsEnumerable(length)
// => true
arr.propertyIsEnumerable(length) // => true