Skip to content

Instantly share code, notes, and snippets.

@essejose
Created June 2, 2014 13:55
Show Gist options
  • Save essejose/9432d4ae1353040763b3 to your computer and use it in GitHub Desktop.
Save essejose/9432d4ae1353040763b3 to your computer and use it in GitHub Desktop.
function liga() {
this.ligado = true;
}
Ventilador.prototype.ligar = liga;
function Ventilador(velMax) {
this.velocidadeMaxima = velMax;
this.ligado = false;
this.ligar = liga;
}
var ventilador = new Ventilador(3);
alert(ventilador.ligado); // Retorna false
ventilador.ligar();
alert(ventilador.ligado); // Retorna true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment