Part of ES5, now widely available.
Returns an array of keys from the object
const car = { color: 'red', engineSize: 1.0 }; Object.keys(car); // ['color', 'engineSize']