FindLastKey returns the key of the last property value for which a supplied function returns true
object
(object): input object[predicate=(x)]
(function): function to test against object values[thisArg]
(*): value of this in a function call
(string): string of the first object key whose value returns truthy against the function
const result = Objects.findLastKey({ apple: 34, pear: 434, orange: 4, grapefruit: 212 }, x => x > 100 );
console.log(result);
> 'grapefruit'