findLastKey
Finds the last key that satisfies the provided testing function.
Otherwise undefined is returned.
- Use
Object.keys(obj)to get all the properties of the object. - Use
Array.prototype.reverse()to reverse the order andArray.prototype.find()to test the provided function for each key-value pair. - The callback receives three arguments - the value, the key and the object.