Skip to content

Instantly share code, notes, and snippets.

@morisasy
Created July 12, 2017 14:22
Show Gist options
  • Save morisasy/267f7b3534e2b85e4defc756523f289e to your computer and use it in GitHub Desktop.
Save morisasy/267f7b3534e2b85e4defc756523f289e to your computer and use it in GitHub Desktop.
Given an object and a key, write a function "getLastElementOfProperty" returns the last element of an array located at the given key.
Notes:
* If the array is empty, it should return undefined.
* if the property at the given key is not an array, it should return undefined.
* If there is no property at the key, it should return undefined.
function getLastElementOfProperty(obj, key) {
// your code here
if ( Array.isArray( obj[key] ) === false ){
return undefined;
}else if ( obj[key][0] === undefined){
return undefined;
}else{
return obj[key][obj[key].length - 1];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment