Skip to content

Instantly share code, notes, and snippets.

@iendjinn
Created May 2, 2017 09:20
Show Gist options
  • Save iendjinn/9e610bdb76ce30e36580fbf1aeef4a97 to your computer and use it in GitHub Desktop.
Save iendjinn/9e610bdb76ce30e36580fbf1aeef4a97 to your computer and use it in GitHub Desktop.
class blob {
constructor(x) {
this.x = x;
this.y = null;
}
setY(y) {
this.y = y;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment