Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Exercise-1 updated
  • Loading branch information
edksam committed Jul 20, 2020
commit 657fda311129fad75031ade3c936236aba06d1e0
16 changes: 7 additions & 9 deletions Week-1/InClass/B-objects-get-set/exercise-1.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@
*/

let kitten = {
ageMonths: 3,
isFemale: true,
furColour: "brown"
ageMonths: 3,
isFemale: true,
furColour: "brown",
};

// YOUR CODE GOES BELOW HERE
console.log(kitten.ageMonths);
console.log(kitten.isFemale);
console.log(kitten.furColour);






// YOUR CODE GOES ABOVE HERE
// YOUR CODE GOES ABOVE HERE