Selects and returns the value of the specified property from the given object.
// returns 'bar'keySelect('foo', { foo: 'bar' });// returns 25keySelect(2, [10, 20, 25]); Copy
// returns 'bar'keySelect('foo', { foo: 'bar' });// returns 25keySelect(2, [10, 20, 25]);
Selects and returns the value of the specified property from the given object.