Skip to content

Instantly share code, notes, and snippets.

@appcoreopc
Created February 3, 2016 09:04
Show Gist options
  • Save appcoreopc/7f8ecd7f8ad8126acba1 to your computer and use it in GitHub Desktop.
Save appcoreopc/7f8ecd7f8ad8126acba1 to your computer and use it in GitHub Desktop.
simpleview
class View {
constructor(name) {
this._name = name;
}
name(name) {
if (!arguments.length) return this._name;
this._name = name;
return this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment