Created
January 5, 2016 16:09
-
-
Save rhynl/a2ed47457fc68429f7ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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