Skip to content

Instantly share code, notes, and snippets.

@TobyEalden
Forked from iendjinn/overkill?.js
Last active May 2, 2017 09:34
Show Gist options
  • Save TobyEalden/1c173c4047c9844331a499d0217efb15 to your computer and use it in GitHub Desktop.
Save TobyEalden/1c173c4047c9844331a499d0217efb15 to your computer and use it in GitHub Desktop.
this is overkill :)
function blob(xIn, yIn) {
const x = xIn;
const y = yIn;
this.setY = (yIn) => {
y = y;
};
this.getY = () => {
return y;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment