Skip to content
Prev Previous commit
Next Next commit
4 h
  • Loading branch information
Nouransaeed committed Aug 14, 2019
commit 8a2a4bb341ff589261daa8226a37a01dae4674a7
15 changes: 12 additions & 3 deletions Week3/homework/step2-4.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
'use strict';

'use strict';



function Dog() {
// add your code here
}

this.name = 'ginger';

this.color = 'white';

this.numLegs = 4;

}
const hound = new Dog();

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