Skip to content
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
step2-4 done!
  • Loading branch information
EliaYazdi committed Aug 2, 2019
commit 787c1c7317b0326c57be185b488588f10b6dbd1b
6 changes: 4 additions & 2 deletions Week3/homework/step2-4.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
'use strict';

function Dog() {
// add your code here
this.name = "Albert";
this.color = "brown";
this.numLegs = 4;
}

const hound = new Dog();

// Do not change or remove anything below this line
module.exports = hound;
module.exports = hound;