Skip to content

Instantly share code, notes, and snippets.

@rhynl
Created January 5, 2016 16:09
Show Gist options
  • Save rhynl/a2ed47457fc68429f7ad to your computer and use it in GitHub Desktop.
Save rhynl/a2ed47457fc68429f7ad to your computer and use it in GitHub Desktop.
Carro.prototype.numeroDeRuedas = function(numero) {
if (typeof numero) {
this._numeroDeRuedas = parseInt(numero, 4);
}
return this._numeroDeRuedas;
}
//setter
this.numeroDeRuedas(4);
//getter
var ruedas = this.numeroDeRuedas();
class Carro extends Vehiculo {
constructor(nombre, tipo) {
super(nombre, tipo);
this.encender = encender;
this.combustible = '';
}
static default () {
return new Carro('miCarro', 'Sedan');
}
set numeroDeRuedas (numero = 0) {
if (typeof value === 'number') {
this._numeroDeRuedas = parseInt(numero, 4);
}
}
get numeroDeRuedas() {
return this._numeroDeRuedas;
}
}
//setter
this.numeroDeRuedas = 4;
//getter
var ruedas = this.numeroDeRuedas;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment