Skip to content

Instantly share code, notes, and snippets.

@alejandrorangel
Created June 3, 2016 21:06
Show Gist options
  • Save alejandrorangel/eb4072bec7d1dfb49571d27c2b99589c to your computer and use it in GitHub Desktop.
Save alejandrorangel/eb4072bec7d1dfb49571d27c2b99589c to your computer and use it in GitHub Desktop.
function Product() {
this.type = "";
this.color = "";
this.getInfo = function() {
return this.color + ' ' + this.type;
};
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -
function Product() {
this.type = "";
this.color = "";
}
Product.prototype.getInfo = function() {
return this.color + ' ' + this.type;
};
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -
class Product {
constructor() {
this.type = "";
this.color = "";
}
getInfo() {
return this.color + ' ' + this.type;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment