ga-wdi-boston / ruby-vs-js-objects

Other
0 stars 94 forks source link

Demo Code doesn't work. Needs = not : #20

Closed payne-chris-r closed 8 years ago

payne-chris-r commented 8 years ago
const Country = function (name){
  this.name: name,
  this.language: null
}

Suggested change:

const Country = function (name){
  this.name = name,
  this.language = null
}
RealWeeks commented 8 years ago

@payne-chris-r corrected in commit 1918020 okay to close?

payne-chris-r commented 8 years ago

Yep. Thanks Weeks.