Is it possible to get any property value dynamically in a followed piece of code with a name that we can't predict?
Getting value by object['keyName'] NOT fit here because we DON'T KNOW the property name.
Our property names can be ANY and NOT predictable.
let arr = [{a: 'a'}, {b: 'b'}];
let filtered = [];
filtered = arr.filter(item => {
return item.'some property' === 'a';
});