The value of the specified key in the object, or undefined
if the key does not exist.
const myObj = { name: 'John', age: 30 };
objGet(myObj, 'name');
//=> 'John'
objGet(myObj, 'age');
//=> 30
objGet(myObj, 'address');
//=> undefined
Generated using TypeDoc
Retrieves the value associated with the specified key from an object.