11 solution

This commit is contained in:
LoptrSir 2022-03-21 11:12:38 -07:00
parent ad8597d5ad
commit a098b836c5
1 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
const getTheTitles = function() {
const getTheTitles = function(dict) {
result = Object.keys(dict);
console.log(result);
return result;
};
// Do not edit below this line
module.exports = getTheTitles;