Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.
Next Next commit
exercise part1 completed
  • Loading branch information
bireworld committed Jul 12, 2020
commit 4ccc50b243918c3c887175048bca475ca45d74c8
6 changes: 4 additions & 2 deletions Week-1/InClass/F-object-keys/exercise-part-1.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ let mentorsAges = {

// ONLY EDIT BELOW THIS LINE

let mentorsNames = ;
let mentorsNames = Object.keys(mentorsAges);

let mentorsNamedUppercased = ;
let mentorsNamedUppercased = mentorsNames.map(function(key){
return key.toUpperCase();
});

// ONLY EDIT ABOVE THIS LINE

Expand Down