Skip to content

Instantly share code, notes, and snippets.

@rhynl
Created January 5, 2016 15:17
Show Gist options
  • Select an option

  • Save rhynl/35169ee930529b58e507 to your computer and use it in GitHub Desktop.

Select an option

Save rhynl/35169ee930529b58e507 to your computer and use it in GitHub Desktop.
var Vehiculo = function Vehiculo(nombre, tipo) {
this._name(name || '');
this._tipo = tipo;
}
class Vehiculo {
constructor(nombre, tipo) {
this._nombre = nombre;
this._tipo = tipo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment