Day 5 of 100 Days Of Code
Day 5: July 29, Sunday
Today ‘s Progress: My goal today was to finish the remaining challanges in Introduction to the Basic Data Structure Challenges it took more than 5 hours.
Thoughts: Remembered NO OVER THINKING!!! I have a bad habit of over complicating simple instructions, when it says do “a” I think well should I get to “a” via ax^2+ab+c=0
Today didn’t disappoint there were very vague instructions and the examples didn’t match what we were being called on to do Like the one challenge where I forgot to capitalize the “O” in “Object” and spent almost an hour trying to figure why the unit tests weren’t passing ARGGGGG!!!
//Generate an Array of All Object Keys with Object.keys()
//Finish writing the getArrayOfUsers function so that it returns an array containing all the properties in the object it receives as an argument.
let users2 = {
Alan: {
age: 27,
online: false
},
Jeff: {
age: 32,
online: true
},
Sarah: {
age: 48,
online: false
},
Ryan: {
age: 19,
online: true
}
};
function getArrayOfUsers(obj) {
// change code below this line
return Object.keys(obj);//OH GOD!!! an hour just because I forgot to capitalize O
// change code above this line
}
console.log(getArrayOfUsers(users2));
Link(s) to work
- PassedAdd Key-Value Pairs to JavaScript Objects
- PassedModify an Object Nested Within an Object
- PassedAccess Property Names with Bracket Notation
- PassedUse the delete Keyword to Remove Object Properties
- PassedCheck if an Object has a Property
- Passed Iterate Through the Keys of an Object with a for…in Statement
- PassedGenerate an Array of All Object Keys with Object.keys()
- PassedModify an Array Stored in an Object
Written on July 29, 2018